-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
55 lines (48 loc) · 920 Bytes
/
main.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
html {
background-repeat: no-repeat;
background-color: #6B6B00;
}
body{
font: 12pt serif;
color: #DDDDD0;
background-color: #242526;
border: 3px solid #DDDDD0;
margin-top: 5%;
margin-bottom: 5%;
margin-left: 10%;
margin-right: 10%;
}
div{
margin: 2% 2% 2% 2%;
height: auto;
overflow: auto;
}
button {
border: 3px solid #242526;
border-radius: 10px;
font: bold 14pt serif;
text-align: center;
cursor: pointer;
color: #DDDDD0;
background-color: #242526;
padding: 3px 3px 3px 3px;
}
.currentButton {
text-decoration:underline;
color: #ABAB00;
}
button:hover {
border: 3px solid #ED673C;
background-color: #444546;
color: #ED673C;
}
.navbar {
border-top: 1px solid #DDDDD0;
border-bottom: 1px solid #DDDDD0;
padding-top: 2%;
padding-bottom: 2%;
}
a { text-decoration: none; }
a:link { color:#2093C3; }
a:visited { color:#2093C3; }
a:hover { color:#ED673C; }