-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
173 lines (149 loc) · 3.02 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
body {
border: 0;
margin: 0;
padding: 0;
font-family: "Pontano Sans", "Arimo", "Droid Sans", "Open Sans", Tahoma, san-serif;
background: url("img/dust.png");
z-index:-1;
}
li {
list-style-type: none;
}
/*Denotes the menu style*/
nav ul ul {
display: none;
}
nav ul li:hover > ul {
display: block;
}
nav ul {
background: #efefef;
background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
border-radius: 10px;
list-style: none;
position: relative;
display: inline-table;
padding: 0;
margin-left: 10%;
}
nav ul:after {
content: "";
clear: both;
display: block;
}
nav ul li {
float: left;
}
nav ul li:first-child:hover{
border-bottom-right-radius:0px;
}
nav ul li:last-child:hover{
border-bottom-left-radius:0px;
}
nav ul ul li:last-child:hover{
border-bottom-left-radius:10px;
}
nav ul li:not(:last-child):not(:first-child):hover{
border-bottom-right-radius:0px;
border-bottom-left-radius:0px;
}
nav ul li:hover {
background: #4b545f;
background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
border-radius: 10px;
}
nav ul li:hover a {
color: #fff;
border-radius: 10px;
}
nav ul li a {
display: block;
padding: 12px 40px;
color: #757575;
text-decoration: none;
}
nav ul ul {
background: #5f6975;
border-radius: 0px;
padding: 0;
position: absolute;
top: 100%;
margin-left: 0%;
}
nav ul ul:last-child {
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
nav ul ul li {
float: none;
border-top: 1px solid #6b727c;
border-bottom: 0px solid #575f6a;
position: relative;
}
nav ul ul li a {
padding: 15px 40px;
color: #fff;
}
nav ul ul li a:hover {
background: #4b545f;
}
/*This section denotes the changes in scroll buttons*/
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 50px rgba(0,0,0,0.3);
border-radius: 12px;
}
::-webkit-scrollbar-thumb {
border-radius: 12px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:hover{
-webkit-box-shadow: inset 50px 50px 6px rgba(0,0,0,0.3);
width: 12px;
}
.bigText {
width:600px;
height: 120px;
}
.headerWrapper{
background-image: url("img/background.jpg");
height: 100%;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.header {
border: 0;
margin: 0;
width: 100%;
}
.title{
padding-top: 3%;
padding-left: 10%;
color: #5D71A8;
font-size: 3em;
}
.spacer{
height: 10px;
}
.bodywrapper {
height: 100%;
margin: 0;
padding: 0;
}
.fullBody{
margin: 0 10% 0 10%;
padding: 0;
opacity: 1;
}
.error {
font: 1.1em;
color: #AA2222;
}