-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (51 loc) · 1.03 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');
body {
font-family: 'Roboto', arial, helvetica, sans-serif;
background-color: #121212;
color: #fff;
max-width: 100%;
margin: 0 auto;
font-size: 30px;
}
h1 {
padding: 10px 0;
font-size: 2rem;
}
.h1-home {
text-align: center;
}
p {
font-size: 1rem;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
align-content: center;
flex-wrap: wrap;
padding: 2vh 4vw;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.473);
margin-bottom: 50px;
}
.header-logo {
flex-grow: 1;
color: #fff;
font-weight: bold;
}
.nav-container {
height: 100%;
display: flex;
gap: 3vw;
justify-content: flex-end;
}
.nav-items, .header-logo {
text-decoration: none;
color: #fff;
border-bottom: 2px solid transparent;
}
.nav-items:hover, .nav-items:focus {
border-bottom: 2px solid rgb(169, 99, 226);
}
.main-container {
margin: 50px;
}