-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.164d45a1.css
More file actions
97 lines (85 loc) · 1.37 KB
/
styles.164d45a1.css
File metadata and controls
97 lines (85 loc) · 1.37 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
box-sizing: border-box;
}
.header-container {
height: 100%;
max-width: 60rem;
margin: auto;
padding: 0.5rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.header {
background-color: darkmagenta;
height: 6rem;
}
.logo {
display: flex;
align-items: center;
height: 100%;
}
.logo img {
height: 100%;
}
.nav {
flex-grow: 1;
display: flex;
justify-content: space-around;
align-items: center;
}
.nav-link {
padding: 0.25rem;
text-decoration: none;
font-family: sans-serif;
color: white;
font-size: 1.05rem;
font-weight: bold;
border-bottom: 2px solid transparent;
}
.nav-link:hover {
border-bottom: 2px solid white;
}
.content {
max-width: 60rem;
margin: auto;
}
.intro {
margin: 0 10rem;
font-family: sans-serif;
}
.intro h1 {
color: darkmagenta;
font-size: 2.5rem;
text-align: center;
}
.intro img {
width: 100%;
object-fit: cover;
}
.cards {
display: flex;
flex: 1 1 auto;
align-items: center;
justify-content: space-between;
}
.card {
margin: 0 1rem;
}
.card h2 {
font-family: sans-serif;
}
.test-container {
display: flex;
justify-content: center;
}
.test {
background-color: darkmagenta;
border-radius: 9999px;
color: white;
font-size: 1.25rem;
font-family: sans-serif;
font-weight: bold;
padding: 0.5rem 3rem;
}
/*# sourceMappingURL=/styles.164d45a1.css.map */