-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
60 lines (52 loc) · 1017 Bytes
/
styling.css
File metadata and controls
60 lines (52 loc) · 1017 Bytes
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
@font-face { font-family: roboto; src: url(fonts/roboto_light.ttf); }
@font-face { font-family: roboto; src: url(fonts/roboto_bold.ttf); font-weight: bold; }
@font-face { font-family: consola; src: url(fonts/consola.ttf); }
body {
text-align: center;
margin: 0 auto;
font-family: roboto;
font-size: 1.1em;
color: #FFFFFF;
opacity: 1;
}
a:link, a:visited { color: white; text-decoration: none; }
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#_title {
font-family: consola;
padding: 0;
margin: 0;
color: #FFFFFF;
font-size: 2.3em;
}
#_body {
opacity: 0.75;
}
#navbar {
padding: 40px 0 0 0;
}
#navbar li {
margin: 0;
padding: 0 4px;
display: inline;
text-align: center;
border-right: 3px solid white;
}
#navbar li:last-child { border-right: none; }
#navbar a {
padding: 4px 6px;
margin: 0;
text-align: center;
}
#navbar a:hover { background-color: #424242; }
#banner{
padding: 40px 0;
text-align: center;
margin: 0;
background-color: #212121;
width: 100%;
color: white;
}