-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (83 loc) · 1.42 KB
/
Copy pathstyles.css
File metadata and controls
99 lines (83 loc) · 1.42 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
98
99
/* Layout */
main.container,
nav.container {
max-width: 900px;
}
nav {
margin-top: 0.75rem;
}
header.hero {
padding: 1.75rem 0 1.5rem;
}
main.container > section,
article > section {
padding-top: 1.5rem;
}
footer.site-footer {
padding: 2rem 0;
opacity: 0.7;
}
/* Typography */
.muted {
opacity: 0.75;
}
article h3 {
margin-bottom: 0.25rem;
}
article p {
margin-bottom: 0.75rem;
line-height: 1.6;
}
/* Components */
.skip-link {
position: absolute;
left: -9999px;
top: 0.75rem;
z-index: 100;
padding: 0.5rem 0.75rem;
background: var(--pico-background-color);
border: 1px solid var(--pico-muted-border-color);
border-radius: var(--pico-border-radius);
}
.skip-link:focus {
left: 0.75rem;
outline: none;
}
.cta {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.projects-grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
footer.actions {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
section.writing > article + article {
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid var(--pico-muted-border-color);
}
section.writing .read-all {
margin-top: 1.25rem;
}
.brand a {
display: flex;
align-items: center;
text-decoration: none;
color: inherit;
}
.brand img {
border-radius: 999px;
object-fit: cover;
width: 96px;
height: 96px;
max-width: none;
flex-shrink: 0;
}