-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (77 loc) · 1.59 KB
/
style.css
File metadata and controls
93 lines (77 loc) · 1.59 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
* {
margin: 0;
padding: 0;
color: white;
}
:root {
--purple: #6c00ff;
--purple2: #a200ff;
--background: rgb(22, 22, 28);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
}
tr:nth-child(even) {
background-color: #ffffff04;
}
td {
padding: .2em;
}
pre > code:not(.no-code) {
display: block;
padding: 1em;
line-height: 1.5;
}
code.no-code > pre {
display: inline;
font-size: .7em;
margin-left: .7em;
}
code:not(.no-code) {
background: rgb(44, 44, 54);
padding: .1em .4em;
border-radius: 4px;
font-family: monospace;
overflow-y: scroll;
}
nav a {
transition: color 0.2s;
width: fit-content;
border-bottom: 1px solid transparent;
&:hover:not(.experimental) {
color: #aaa;
border-bottom: 1px solid;
}
}
footer {
display: flex;
gap: 1em;
& a {
flex: 1;
padding: 1em;
text-decoration: none;
border: 1px solid rgb(44, 44, 54);
border-radius: 4px;
transition: border 0.4s;
&:hover {
border: 1px solid transparent;
}
}
}
ul {
margin: .5em 2em;
> li { margin: .2em 0; }
}
a {
text-decoration: none;
border-bottom: 1px solid;
}
.experimental {
background: linear-gradient(to right, #f1c309, #ffeca0, #f1c309);
color: transparent;
background-clip: text;
}
a.experimental:not(.nav),
a:not(.nav) .experimental,
a.experimental.nav:hover {
border-bottom: 1px solid #f1c309;
}