-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
86 lines (71 loc) · 1.14 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
80
81
82
83
84
85
86
html {
font-family: sans-serif;
overflow-y: scroll;
background: #222222;
}
body {
margin-left: calc(16.6666666667% - 16px);
margin-right: calc(16.6666666667% - 16px);
}
main {
padding-left: 10px;
padding-right: 10px;
padding-top:1px;
padding-bottom: 5px;
margin-bottom: 10px;
background: white;
color: black;
}
#avatar {
float: right;
padding-top: 0px;
}
#info {
width: 100%;
}
.unstyledul {
list-style-type: none;
}
nav {
display: block;
margin-top: 16px;
}
nav ul {
list-style-type: none;
margin: 0;
padding-left: 0px;
padding-right: 0px;
background-color: #111111;
overflow: hidden;
}
nav li {
float: left;
}
nav a {
display: block;
padding: 12px 20px;
color: #999999;
text-decoration: none;
text-align: center;
}
nav a:hover {
color: white;
}
nav a.active {
color: black;
background-color: white;
}
header.name h1 {
margin-top: 10px;
margin-bottom: 10px;
}
section.content h3 {
margin: 0px;
margin-top: 20px;
}
section.content h4 {
margin: 0px;
}
section.content a:visited {
color: #a9a9a9;;
}