-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
80 lines (69 loc) · 1.33 KB
/
main.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
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
*, *::before, *::after {
box-sizing: border-box;
}
body {
max-width: 800px;
margin: auto;
background-color: black;
color: white;
font-family: "Fira Code", monospace;
}
a {
color: #f57e20;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
input[type="file"] {
display: none;
}
.custom-file-upload {
appearance: auto;
text-rendering: auto;
letter-spacing: normal;
word-spacing: normal;
line-height: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: center;
align-items: flex-start;
cursor: default;
box-sizing: border-box;
margin: 0em;
padding-block: 1px;
padding-inline: 6px;
border-width: 2px;
border-style: outset;
border-color: buttonborder;
border-image: initial;
font-size: 10pt;
background-color: #333;
color: white;
font-family: "Fira Code", monospace;
}
button {
background-color: #333;
color: white;
font-family: "Fira Code", monospace;
}
body.wide {
max-width: 1000px;
margin:auto;
text-align: center
}
ul {
max-width: 100%;
width: max-content;
text-align: left;
margin: auto;
}
canvas.border {
border: 1px solid white;
background-color: lightgray;
}
.center {
text-align: center;
}