-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (43 loc) · 833 Bytes
/
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
body
{
background-image: -moz-radial-gradient(#1a9951, #276141);
}
/*Background color for navigationbar*/
.nav {
background-color: #333;
overflow: hidden;
display: inline-block;
list-style-type:none;
margin:0;
margin-left:35%;
padding:0;
text-align:center;
font-size:20px;
}
/* Properties for navigationbar links */
.nav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Hover color change*/
.nav a:hover {
background-color: #ddd;
color: black;
}
a.top:hover /*new menu*/
{
background-color:#ddd;
color: black;
}
/* Add a color to the active/current link */
a.active {
background-color: #4CAF50;
color: white;
}
footer {
border-top: 5px solid #4CAF50;
}