-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (50 loc) · 821 Bytes
/
styles.css
File metadata and controls
58 lines (50 loc) · 821 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
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background: #0d0d0d;
color: #e6e6e6;
}
.site-header {
padding: 20px;
background: #111;
border-bottom: 1px solid #333;
text-align: center;
}
.site-header h1 {
margin: 0;
font-size: 32px;
color: #4da6ff;
}
.tagline {
margin: 5px 0 15px 0;
font-size: 16px;
color: #cccccc;
}
.main-nav a {
margin: 0 10px;
color: #4da6ff;
text-decoration: none;
font-weight: bold;
}
.main-nav a:hover {
text-decoration: underline;
}
.panel {
padding: 20px;
margin: 20px;
background: #1a1a1a;
border: 1px solid #333;
border-radius: 6px;
}
.panel h2 {
margin-top: 0;
color: #66b3ff;
}
.site-footer {
text-align: center;
padding: 20px;
margin-top: 40px;
border-top: 1px solid #333;
color: #777;
}