-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
117 lines (115 loc) · 2.03 KB
/
main.css
File metadata and controls
117 lines (115 loc) · 2.03 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
.slider-container {
display: flex;
align-items: center;
}
.slider {
margin-right: 10px;
}
.hits-link {
position: fixed;
top: 70px;
right: 6px;
z-index: 999;
width: 120px
}
.box {
padding: 1%;
border-radius: 10px;
width: calc((75% - 7%) / 3);
}
.box.sidebar {
width: 20%;
height: calc(80%);
position: fixed;
right: 3px;
top: 5%;
padding: 1%;
border-radius: 10px;
}
.version {
padding: 0.9% 1.1%;
border-radius: 6px;
font-family: Arial, sans-serif;
font-size: 27px;
}
.image-container {
display: flex;
align-items: flex-start;
padding: 1%;
border-radius: 10px;
width: 75%;
}
#colorList li {
display: flex;
flex-direction: column;
align-items: flex-start;
}
#colorList canvas {
border-radius: 5px;
margin-right: 4px;
}
canvas {
display: inline-block;
margin-right: 10px;
vertical-align: middle;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 20px;
}
h3 {
margin-top: 0;
font-family: "Bahnschrift", sans-serif;
}
h4 {
font-family: "Futura", sans-serif;
}
li button {
height: 20px;
padding: 2px 5px;
margin: 3px;
}
label {
font-weight: bold;
margin-bottom: 5px;
display: block;
}
img {
display: block;
margin: 0;
width: 100%;
height: auto;
object-fit: cover;
image-rendering: pixelated;
}
button {
margin: 5px;
padding: 8px 10px;
border: none;
border-radius: 5px;
background-color: #535353;
color: white;
font-size: 13px;
cursor: pointer;
font-family: "roboto", sans-serif;
}
input[type="number"],
select,
input[type="text"] {
padding: 5px;
border-radius: 5px;
}
select {
margin-bottom: 10px;
padding: 5px;
border-radius: 5px;
border: 1px solid #666;
background-color: #FFFFFF1A;
color: #ebebeb;
}
input[type="number"],
select {
margin-bottom: 10px;
}