-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (49 loc) · 1000 Bytes
/
style.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
49
html, body {
margin: 20px;
padding: 0;
background-color: black;
color: white;
text-align: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
popup-info {
display: inline;
}
.container {
width: fit-content;
height: fit-content;
background-color: #f0f0f0;
color: black;
margin: auto;
padding: 15px;
border: 5px outset white;
}
canvas {
display: block;
}
.accent-box{
background-color: black;
color: red;
padding: 10px;
border: 5px inset white;
}
.lighter{
background-color: #202020;
}
::selection {
background: #9d9d9d4a;
}
.container::selection {
background: #4747474a;
}
.external::after{
display: inline-block;
content: " ";
width: 1em;
height: 1em;
background-image: url(external-link.svg);
background-size: 1em;
}
.external.red::after{
background-image: url(external-link-red.svg);
}