-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.css
79 lines (62 loc) · 1.24 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* navbar */
.navbar {
text-align: center;
}
.navbar .navbar-green-icon {
color: #77C277;
}
.navbar .navbar-button {
margin-left: 5px;
margin-right: 5px;
border: none;
background: none;
}
.navbar .navbar-button:hover {
background-color: #D8E6F2;
border-width: 1px;
border-style: solid;
border-color: #C0DCF3;
}
.navbar .navbar-selected {
background-color: #C0DCF3;
border-width: 1px;
border-style: solid;
border-color: #90C8F6;
}
/* Set Comic Sans font and background color on the body */
body {
background-color: #F0F0F0;
font-family: "Comic Sans MS";
font-size: 1.3em;
color: #212121;
}
/* Patch to show the parent font on buttons too */
button {
font-family: inherit;
font-size: 1em;
}
/* Improve the links */
a:link,
a:visited {
color: black;
text-decoration: underline;
}
a:hover,
a:active {
color: #77C277;
text-decoration: underline;
}
/* Selection customization™ */
::selection {
color: #77C277;
background-color: #F0F0F0;
}
/* Enable codeblocks in case the browser doesn't support them */
code {
font-family: monospace;
}
/* Set 10% margin on left and right for the main div */
.main {
margin-left: 10%;
margin-right: 10%;
}