-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (78 loc) · 1.53 KB
/
style.css
File metadata and controls
93 lines (78 loc) · 1.53 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
:root {
--bg-color: #0f1617;
--example-font: 'Helvetica Neue', 'Inter', sans-serif;
--font-size: 1.5rem;
--style-font: 'Archivo Black';
--link-color: #d63968;
--off-white: #fdf9e6;
}
.card-wrapper {
.screen {
background-color: transparent;
padding: 0;
}
}
.project {
text-align: center;
margin-block: 5rem;
}
.quote {
display: grid;
grid-template-rows: auto 1fr;
justify-items: center;
nav {
display: flex;
gap: 1.5rem;
label {
font-family: var(--style-font);
font-size: var(--font-size);
cursor: pointer;
}
}
}
p {
padding-block-start: 1rem;
}
#about {
padding: 0;
margin-block-end: 1rem;
}
#about1-quote p,
#about2-quote p {
color: #091428;
text-align: left;
padding-block-start: 0.3rem;
margin: 0;
margin-inline: 0.5rem;
text-wrap: pretty;
font-size: 0.85rem;
line-height: 1.3rem;
@media (width > 600px) {
text-align: center;
max-width: 80vw;
}
@media (width > 800px) {
font-size: 0.95rem;
line-height: 1.4rem;
}
@media (width > 1000px) {
font-size: 1rem;
line-height: 1.5rem;
max-width: 50vw;
}
}
#about2-quote p {
padding: 0;
margin: 0.5rem;
}
em {
font-style: italic;
}
.link01 {
text-decoration: underline 0.15rem;
text-decoration-color: var(--link-color);
&:hover {
background-color: var(--link-color);
color: var(--off-white);
}
}