-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
42 lines (37 loc) · 1.12 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
.header{
background-color: rgb(51, 163, 0);
color: white;
padding: 8px;
top: 0px;
position:fixed;
font-family: "arial", sans-serif;
overflow: auto;
width: 99%;
z-index: 900;
}
.header,.left{
left: 0px;
text-align: left;
}
.header,.right{
float: right;
}
/* unvisited link */
.header, a:link {
color: white;
text-decoration: none;
}
/* visited link */
.header, a:visited {
color: lightcyan;
}
/* mouse over link */
.header, a:hover {
color: white;
text-decoration: underline;
}
/* selected link */
.header, a:active {
color: white;
text-decoration: none;
}