-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (87 loc) · 1.49 KB
/
styles.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
#container {
display: flex;
height: 650px;
width: 650px;
flex-direction: column;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
body {
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
text-align: center;
font-size: 80px;
margin: 20px;
}
#content {
display: flex;
}
#options {
display: flex;
flex-direction: column;
margin-right: 70px;
}
.buttonStyle {
background-color: white;
color: gray;
height: 40px;
width: 130px;
font-size: 18px;
border-radius: 10px;
outline: none;
border: solid;
border-color: #E5E7EB;
margin: 10px 0;
align-self: center;
}
input[type='color'] {
width: 80px;
height: 80px;
border: none;
align-self: center;
padding: 0;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}
.on {
border-color: grey;
}
p {
margin-bottom: 3px;
margin-top: 50px;
display: flex;
}
img {
width: 20px;
height: auto;
display: block;
margin-left: 6px;
}
.sliderContainer {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-bottom: 10px;
}
.valueContainer {
margin-bottom: 6px;
}
#demo {
font-size: 24px;
}
#slider {
width: 100%;
border: none;
color: inherit;
font-family: inherit;
font-size: inherit;
cursor: pointer;
outline: none;
}