Newer
Older
* {
box-sizing: border-box;
}
font-family: Arial, Helvetica, sans-serif;
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
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
background: url("../assets/images/wallpaper_binary.png");
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
header {
width: 100%;
nav {
background-color: #fff1;
ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
li {
a {
display: flex;
padding: 10px 20px;
color: #b8b9c5;
font-weight: 500;
text-decoration: none;
}
&:hover,
&.active {
background-color: #fff2;
a {
color: white;
}
}
}
}
}
}
#page-container {
background-color: white;
width: 1200px;
max-width: 100%;
flex: 1;