-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopic_posts.css
More file actions
61 lines (49 loc) · 1.01 KB
/
Copy pathtopic_posts.css
File metadata and controls
61 lines (49 loc) · 1.01 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #121212;
font-weight: bold;
line-height: 1.6;
color: #f5f5f5;
display: flex;
flex-direction: column;
min-height: 100%;
min-width: 800px;
overflow-x: auto;
overflow-y: auto;
background-image: url('.resources/background.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
nav {
text-align: center;
padding: 1rem 0;
}
nav ul {
list-style: none;
white-space: nowrap;
}
nav ul li {
display: inline-block;
margin-right: 10rem;
}
nav ul li:last-child {
margin-right: 0;
}
nav ul li a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ccc;
}