-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColour-Picker.css
More file actions
73 lines (61 loc) · 1.13 KB
/
Copy pathColour-Picker.css
File metadata and controls
73 lines (61 loc) · 1.13 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.container {
background-color: #ffffff;
width: min(90%, 31.25em);
padding: 4em 2em;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
color: #142b37;
font-weight: 600;
border-radius: 0.5em;
display: grid;
justify-content: center;
box-shadow: 0 2em 3em rgba(0, 0, 0, 0.2);
}
.wrapper {
width: 100%;
display: flex;
align-items: space-between;
gap: 1em;
margin-bottom: 2.2em;
}
label {
font-size: 1.8em;
}
input[type="range"] {
width: 100%;
}
.result {
width: 100%;
display: grid;
grid-template-columns: 7fr 5fr;
gap: 1em;
}
input[type="text"],
button {
font-size: 1em;
border-radius: 0.5em;
border: none;
outline: none;
}
input[type="text"] {
background-color: #ebeaea;
padding: 1.2em 0.5em;
font-weight: 400;
}
input[type="text"]::selection {
background-color: transparent;
}
button {
background-color: #0075ff;
color: #ffffff;
font-weight: 600;
cursor: pointer;
}