-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (80 loc) · 1.13 KB
/
styles.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
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
98
html {
scroll-behavior: smooth;
scroll-padding-top: 5rem;
}
nav {
position: sticky;
top: 0;
left: 0;
right: 0;
background-color: var(--pico-background-color);
}
article {
width: fit-content;
}
main > section {
margin-bottom: 4rem;
}
a[role="button"] {
border: none;
font-weight: 600;
}
.bold {
font-weight: 800;
}
.intro {
height: 70vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
}
.intro-title {
font-size: 6rem;
margin-inline: auto;
}
.inline-logo {
width: 20rem;
}
.flex {
display: flex;
gap: 1rem;
}
.grid-wrapper {
display: grid;
gap: 1rem;
}
.stream-img {
width: 10rem;
aspect-ratio: 1;
object-fit: cover;
margin-bottom: 1rem;
}
.inner-section {
margin-top: 3rem;
}
.grid img {
width: 100%;
object-fit: cover;
max-height: 30rem;
}
.xtra-mb {
margin-bottom: 3rem;
}
footer ul {
padding: 0;
display: flex;
align-items: center;
gap: .5rem;
}
footer ul li {
list-style: none;
}
footer a {
color: var(--pico-color-slate-400);
transition: all .3s;
}
footer a:hover {
color: var(--pico-color-pumpkin-300);
}