-
Notifications
You must be signed in to change notification settings - Fork 11
/
styles.css
49 lines (39 loc) · 878 Bytes
/
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
@tailwind base;
@tailwind components;
@tailwind utilities;
.nextra-card > div {
padding: 0 1rem 1rem 1rem;
position: relative;
right: 0px;
order: 2;
}
#card {
display: flex; flex-direction: column;
}
.section-title {
font-size: 2rem;
font-weight: 700;
}
.section-surtitle {
font-size: 1.10rem;
font-weight: 700;
color: transparent;
background-image: linear-gradient(85.52deg, rgba(3, 205, 244) -7.27%, rgb(79, 138, 254) 108.87%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
top: 0.5rem;
}
/* Subsequent details should have less of a gap */
details + details {
margin-top: 0.5rem !important;
}
/* Fix detail padding */
details > div {
padding: 0.25rem;
}
/* Details header should be bold */
details > summary {
font-weight: 700;
}