-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (103 loc) · 2.11 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
body {
background-color: black;
margin: 0;
padding: 30px;
background-image: linear-gradient(#000000, #403042, #5c045f);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
position: absolute;
display: inline-grid;
border: solid, darkgreen;
grid-gap: 1px;
width: 600px;
height: 600px;
opacity: 1;
}
.overlay {
position: relative;
width: 600px;
height: 600px;
top: 0;
left: 0;
z-index: 0;
background-image: url("sonic.png");
}
.btn_container {
display: flex;
flex-direction: row;
width: 700px;
height: 50px;
justify-content: space-evenly;
align-items: center;
}
#eraser {background-image: linear-gradient(to right, #c8ff00 0%, #f84600 51%, #ae00da 100%)}
#eraser {
margin: 10px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
display: block;
}
#eraser:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}
.input-color-container {
position: relative;
overflow: hidden;
width: 40px;
height: 40px;
border: solid 2px #ddd;
border-radius: 40px;
}
#colorPicker {
position: absolute;
right: -8px;
top: -8px;
width: 56px;
height: 56px;
border: none;
}
.cell {
padding: 0;
margin: 0;
background-color: white;
}
#slidervalue {
color:white;
}
.myslider {
-webkit-appearance: none;
width: 100%;
height: 10px;
border-radius: 5px;
background: #eea300;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.myslider::-webkit-slider-thumb {
-webkit-appearance: none;
height: 30px;
width: 30px;
background: rgb(255, 0, 43);
border-radius: 50%;
}
.myslider::-moz-range-thumb {
height: 15px;
width: 15px;
background: pink;
margin-top: -5px;
border-radius: 50%;
}