-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdefault.css
More file actions
124 lines (99 loc) · 2.15 KB
/
default.css
File metadata and controls
124 lines (99 loc) · 2.15 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
@import "spore.css";
:root {
--smfx: #d4dbdc;
--smfx-gradient: linear-gradient(#dce5e4, #cbd0d3);
}
html {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI Variable', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background: var(--spore-glyphic-bg);
color: var(--spore-text-color);
}
body {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
#site-header {
display: flex;
align-items: center;
justify-content: center;
background: var(--smfx-gradient);
background-clip: text;
color: transparent;
text-decoration: none;
}
#site-logo {
width: 64px;
height: 64px;
margin-right: 16px;
}
article {
background: var(--spore-flat-bg);
padding: 32px;
margin-bottom: 32px;
}
footer {
font-size: 12px;
}
#intro {
display: flex;
gap: 64px;
}
#intro #useful-links button {
width: 100%;
margin-bottom: 16px;
}
.screenshot {
width: 100%;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--spore-font);
}
a {
color: var(--spore-light-space);
}
hr {
border: 2px solid var(--spore-mid-space);
margin: 32px 0;
}
td, th {
border-top: 1px solid var(--spore-mid-space);
border-bottom: 1px solid var(--spore-mid-space);
padding: 4px;
}
input {
background: var(--spore-cool);
font-size: 16px;
padding: 5px 13px;
border: 3px var(--spore-neutral) solid;
border-radius: 32px;
outline: none;
}
input:focus {
border-color: var(--spore-light-space);
}
input:invalid:focus {
border-color: #A42433;
}
button {
background: var(--spore-mid-space);
color: var(--spore-white);
font-family: var(--spore-font);
font-size: 18px;
padding: 5px 13px;
border: 3px transparent solid;
border-radius: 32px;
transition: 0.1s;
}
button:hover {
border-color: var(--spore-light-space);
}
button:active {
background: var(--spore-deep-space-gradient);
}
button:disabled {
color: var(--spore-neutral);
}
pre {
white-space: pre-wrap;
}