-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (98 loc) · 1.84 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
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.board{
width: 500px;
height: 500px;
display: grid;
border: 9px solid #fff;
border-radius: 18px;
}
body{
background-color: rgb(245, 245, 245);
font-family: 'Open Sans', sans-serif;
line-height: 1.6;
color: rgb(36, 36, 36);
}
.slider{
background-color: rgb(146, 146, 146);
height: 140px;
width: 140px;
border-radius: 50%;
position: relative;
}
.knob{
top: 15;
left: 50%;
transform: translateX(-50%);
width: 5px;
height: 10px;
position: absolute;
background-color: #fff;
}
.container{
background-color: #D32912;
padding: 40px;
border-radius: 20px;
display: flex;
flex-direction: column;
}
.buttons{
margin-top: 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
button{
background-color: #fff;
height: 80px;
width: 80px;
border-radius: 80px;
border: 0;
padding: 14px;
}
.button-black{
background-color: #000;
height: 50px;
width: 50px;
border-radius: 80px;
left: 50%;
}
input {
width: 100%;
border: none;
color: inherit;
font-family: inherit;
font-size: inherit;
cursor: pointer;
outline: none;
}
button,
input[type='color'] {
transition: transform 0.1s ease-in-out;
}
button:hover,
input[type='color']:hover {
transform: scale(1.05);
}
input[type='color']:active {
transition: transform 0.05s ease-in-out;
transform: scale(1);
}
input[type='color'] {
width: 80px;
height: 80px;
border: none;
background-color: rgba(0, 0, 0, 0);
}
input[type='color']::-webkit-color-swatch-wrapper {
padding: 0;
}
input[type='color']::-webkit-color-swatch {
border: none;
border-radius: 50px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}