-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (111 loc) · 2.02 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
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
125
126
127
128
:root {
--accent: rgb(142, 142, 142);
--grey: rgb(31, 31, 31);
}
* {
margin: 0px;
padding: 0px;
border: none;
box-sizing: border-box;
font-family: monospace;
}
body {
background-color: var(--grey);
}
.container {
background-color: white;
display: flex;
flex-direction: column;
padding: 24px 12px 24px;
width: fit-content;
height: 100vh;
margin-left: auto;
margin-right: auto;
}
.sketch-container {
display: flex;
flex-direction: column;
border: 2px solid var(--grey);
background-color: var(--grey);
border-radius: 8px;
width: 460px;
height: 460px;
margin: 24px 0px;
}
.grid-row {
display: flex;
flex-direction: row;
flex: 1 1 auto;
}
.grid-element {
display: flex;
border: 1px solid #808080;
background-color: white;
opacity: 1;
border-radius: 8px;
flex: 1 1 auto;
transition-duration: 0.1s;
}
.grid-hover {
transform: scale(1.3);
border-color: cyan;
background-color: var(--grey) !important;
opacity: 1 !important;
}
.slidecontainer {
display: flex;
flex-direction: row;
margin: 24px 0px 0px;
gap: 24px;
font-size: 14px;
align-items: center;
}
.slider {
width: 140px;
height: 4px;
background: lightgray;
opacity: 0.7;
}
.slider:hover {
opacity: 1;
transition: opacity .1s;
}
.slider::-moz-range-thumb {
width: 10px;
height: 10px;
background: var(--accent);
cursor: pointer;
}
.options p {
margin-bottom: 4px;
font-size: 16px;
}
.options label {
margin-right: 12px;
font-size: 14px;
}
.footer-container {
display: flex;
flex-direction: row;
justify-content: space-between;
}
input {
accent-color: var(--accent);
}
button {
background-color: var(--grey);
border-radius: 2px;
padding: 4px 12px;
color: white;
font-size: 16px;
font-weight: 500;
}
button:hover {
background-color: rgb(57, 57, 57);
}
/* .header-container {
}
.sketch-container {
}
.footer-container {
} */