-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (74 loc) · 1.39 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
font-family: "Poppins", sans-serif;
}
.pop-up{
flex-direction: column;
width: 350px;
/* border-radius: 2px; */
}
.color-picker{
padding: 30px 0;
width: 100%;
background-color: rgba(233, 210, 233, 0.938);
}
#pickBtn{
background-color: hsla(285, 36%, 36%, 0.91);
color: white;
border-radius: 4px;
border: none;
outline: none;
padding: 8px 15px;
font-size: .9rem;
}
#pickBtn:hover{
background-color: hsla(285, 35%, 37%, 0.897);
box-shadow: 0 0 2px rgba(0, 0, 0, 0.507);
/* font-size: .93rem; */
}
.picked-colors{
width: 100%;
/* min-height: 13vh; */
}
.picked-colors header{
justify-content: space-between;
padding: 3px 6px;
font-size: .86rem;
margin-bottom: 5px;
font-weight: bold;
/* background-color: #4242421a; */
}
#clear-all{
color: rgba(35, 44, 53, 0.733);
cursor: pointer;
}
#color-list{
display: flex;
flex-wrap: wrap;
}
#color{
display: flex;
width: calc(100%/3);
list-style: none;
margin: 4px 0;
cursor: pointer;
font-weight: bold;
/* text-transform: uppercase; */
}
#rectangle {
background-color: lightseagreen;
display: block;
width: 15px;
height: 15px;
border-radius: 3px;
margin: 0 3px;
}
#color-name{
font-size: .78rem;
font-weight: bold;
}