-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (107 loc) · 1.94 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
.gridCol {
height: 1.25em;
width: 1.25em;
border: 0.5px solid #1e1e1e1e;
user-select: none;
}
.gridRow {
display: flex;
user-select: none;
}
.right {
background-color: #817fef;
position: fixed;
height: 100vh;
width: 25vw;
top: 0;
right: 0;
z-index: 99;
padding: 1rem;
}
.horiz {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.container {
width: 69vw !important;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-left: 6vw;
background: rgb(244, 244, 244);
}
input[type="range"] {
-webkit-appearance: none;
width: 100%;
height: 20px;
background: #ffffff;
outline: none;
opacity: 0.7;
border-radius: 2rem;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
margin: 0.5rem 0;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
background: #574caf;
border-radius: 2rem;
cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
width: 25px;
height: 25px;
background: #574caf;
border-radius: 2rem;
cursor: pointer;
}
.style2 {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
width: 47px;
height: 50px;
cursor: pointer;
aspect-ratio: 1 !important;
}
.style2::-webkit-color-swatch {
border-radius: 100%;
border: none;
border: 1px solid #362f6c;
}
.style2::-moz-color-swatch {
border-radius: 100%;
border: none;
}
/* NEW */
.nav-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #817fef;
height: 100vh;
position: fixed;
width: 6vw;
z-index: 99;
}
.icon-button {
padding: 0.5rem;
transition: background-color 0.3s;
border-radius: 50%;
margin-bottom: 0.5rem;
}
.icon-button:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.color-picker {
padding-top: 0.5rem;
}