-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.css
191 lines (164 loc) · 3.6 KB
/
styling.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*styling.css*/
body {
font: Arial, Helvetica, sans-serif;
}
#container {
width: 1050px;
/* border: 1px solid grey;*/
margin: 0 auto;
}
#header {
height: 100px;
padding: 10px 0;
}
#brand {
float: left;
}
h1 a {
font-size: 50px;
font-weight: 100;
color: red;
text-decoration: none;
}
#searchBox {
float: right;
background: linear-gradient(#E4F2B9, #B7E953);
background: -webkit-linear-gradient(#E4F2B9, #B7E953);
background: -o-linear-gradient(#E4F2B9, #B7E953);
background: -moz-linear-gradient(#E4F2B9, #B7E953);
width: 400px;
height: 50px;
padding: 20px 20px 0 20px;
margin-top: 20px;
}
.text {
float: left;
width: 200px;
padding: 5px;
font-size: 15px;
color: #E36A0C;
background: white url(images/search.png) right center no-repeat;
border: 1px solid #C8D03E;
}
.submit {
float: right;
padding: 5px;
font-weight: bold;
color: white;
background: #A751D6;
font-size: 15px;
border: 1px solid #DCD5E1;
}
.clear {
clear: both;
}
#menu {
height: 70px;
background: linear-gradient(#F8F594, #D5D533);
background: -webkit-linear-gradient(#F8F594, #D5D533);
background: -o-linear-gradient(#F8F594, #D5D533);
background: -moz-linear-gradient(#F8F594, #D5D533);
padding: 7px 0;
}
ul {
list-style: none;
}
#menu ul li {
float: left;
padding: 0 30px;
height: 30px;
border-right: 1px solid #5d12e7;
}
#menu ul li:last-child {
border-right: none;
}
#menu ul li a {
text-decoration: none;
text-transform: uppercase;
font-size: 17px;
color: red;
line-height: 30px;
-webkit-transition: font-size 0.3s ease;
-moz-transition: font-size 0.3s ease;
-o-transition: font-size 0.3s ease;
-ms-transition: font-size 0.3s ease;
transition: font-size 0.3s ease;
}
#menu ul li a:hover,
#menu ul li a.active {
font-size: 20px;
font-weight: bold;
color: #B314DB;
}
#introduction {
background: linear-gradient(#E5F2BB, #B7E952);
background: -webkit-linear-gradient(#E5F2BB, #B7E952);
background: -o-linear-gradient(#E5F2BB, #B7E952);
background: -moz-linear-gradient(#E5F2BB, #B7E952);
padding: 30px;
margin: 16px 0;
}
#introduction h3 {
font-size: 45px;
color: #316901;
font-weight: normal;
}
#introduction p {
font-size: 25px;
color: #628F19;
text-align: justify;
}
.sidebar {
height: 500px;
width: 450px;
border: 1px solid #BAF46F;
border-radius: 20px;
padding: 10px 30px;
}
.sidebar h3 {
color: #B314DB;
font-size: 30px;
}
.sidebar ul {
padding-top: 8px;
}
#leftsidebar ul li {
padding: 4px 0 4px 10px;
list-style-image: url(images/arrow.png);
}
#rightsidebar ul li {
padding: 17px 0 17px 70px;
background: url(images/tick.png) no-repeat left center;
}
.sidebar ul li a {
text-decoration: none;
font-size: 20px;
color: #5d12e7;
-webkit-transition: font-size 0.3s ease;
-moz-transition: font-size 0.3s ease;
-o-transition: font-size 0.3s ease;
-ms-transition: font-size 0.3s ease;
transition: font-size 0.3s ease;
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
text-decoration: none;
color: #B314DB;
font-size: 23px;
font-weight: bold;
}
#leftsidebar {
float: left;
}
#rightsidebar {
float: right;
}
.footer {
height: 60px;
background: linear-gradient(#F6F390, #D5D533);
background: -webkit-linear-gradient(#F6F390, #D5D533);
background: -o-linear-gradient(#F6F390, #D5D533);
background: -moz-linear-gradient(#F6F390, #D5D533);
padding: 10px 30px;
margin-top: 15px
}