-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (60 loc) · 1.08 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
font-family: 'Noto Sans', sans-serif;
}
body {
background-color: #dceafe;
}
button {
border: solid 1px #a28639;
border-radius: 20000px;
background: #fff3c7;
padding: 3px 7px;
&:hover {
background: #f0e0a5;
}
}
#canvas {
background: white;
border: 1px solid black;
max-width: 30em;
}
#page {
padding: 10px;
height: 90%;
display: flex;
flex-align: center;
justify-content: center;
align-items: center;
gap: 10px;
}
#options {
background: #fff3c7;
border: solid 1px #a28639;
border-radius: 10px;
width: fit-content;
height: fit-content;
font-family: sans-serif;
}
#options>* {
padding: 10px;
&:not(:last-child){
border-bottom: solid 1px #a28639;
}
}
.option-title {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 5px;
}
input[type="number"] {
width: 4em;
border: solid 1px #a28639;
border-radius: 20000px;
background: #fffcf0;
padding: 3px 7px;
}