-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
65 lines (56 loc) · 1.04 KB
/
main.css
File metadata and controls
65 lines (56 loc) · 1.04 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
62
63
64
65
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #040f1a;
}
.navbar {
height: 80px;
width: 100%;
background: #764acc;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
font-family: "Roboto", sans-serif;
}
.title {
font-family: "Consolas", monospace;
font-size: 30px;
}
.navbar .links {
display: flex;
flex-direction: row;
}
.navbar .links li {
list-style: none;
}
.navbar .links li .link {
position: relative;
text-decoration: none;
margin: 0 12px;
color: #0f2144;
font-weight: 600;
font-size: 18px;
}
.navbar .links li .link::before {
content: "";
position: absolute;
bottom: -5px;
left: 0;
height: 3px;
width: 0;
background: #493136;
border-radius: 3px;
transition: 300ms ease-out;
}
.navbar .links li .link:hover::before {
width: 100%;
}
.main-content {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #fff;
margin: 20px 50px;
}