-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
151 lines (128 loc) · 2.68 KB
/
Copy pathstyles.css
File metadata and controls
151 lines (128 loc) · 2.68 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* css styles */
.hero {
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
display: block;
padding-top: 20px;
padding-bottom: 20px;
}
.hero2 {
font-size: medium;
margin-bottom: 50px;
}
.splide__slide picture {
display: block;
width: 100%;
height: 100%;
}
.splide__slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
.quarto-about-jolla p.subtitle {
text-align: center;
}
.card-other-values {
margin-bottom: 0;
}
.quarto-grid-item .card-other-values tr > td:first-of-type {
font-weight: 600;
padding-right: 0;
padding-left: 0;
vertical-align: top;
width: 50%;
}
.pub-list a.btn {
font-size: 80%;
border-radius: 4px;
border: 1px solid black;
margin-top: 0.5rem;
margin-bottom: 1.5rem;
margin-right: 0.2rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
iframe.slide-deck {
border: 3px solid #dee2e6;
width: 100%;
height: 475px;
}
.resource-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1rem;
margin: 1rem 0 2rem;
}
.resource-card {
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 8px;
padding: 1rem;
background: rgba(15, 23, 42, 0.45);
min-height: 100%;
min-width: 0; /* allow grid item to shrink so long repo names can wrap */
}
.resource-card h3 {
font-size: 1.05rem;
margin-top: 0;
overflow-wrap: anywhere; /* break long unbroken repo names instead of overflowing */
word-break: break-word;
}
.resource-card p:last-child {
margin-bottom: 0;
}
.hyperscale-timeline {
display: grid;
gap: 1rem;
margin: 1.25rem 0 2rem;
position: relative;
}
.hyperscale-milestone {
border-left: 4px solid #64748b;
border-radius: 8px;
padding: 1rem 1rem 1rem 1.25rem;
background: rgba(15, 23, 42, 0.5);
}
.hyperscale-milestone.is-achieved {
border-left-color: #22c55e;
}
.hyperscale-milestone.is-active {
border-left-color: #38bdf8;
}
.hyperscale-milestone h3 {
font-size: 1.1rem;
margin: 0.35rem 0 0.5rem;
}
.milestone-marker {
display: inline-block;
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 999px;
padding: 0.1rem 0.55rem;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: #e2e8f0;
}
.is-achieved .milestone-marker {
border-color: rgba(34, 197, 94, 0.55);
color: #86efac;
}
.is-active .milestone-marker {
border-color: rgba(56, 189, 248, 0.55);
color: #7dd3fc;
}
@media (min-width: 900px) {
.hyperscale-timeline {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.hyperscale-milestone {
border-left: 0;
border-top: 4px solid #64748b;
padding: 1rem;
}
}