-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
50 lines (45 loc) · 784 Bytes
/
Copy pathpopup.css
File metadata and controls
50 lines (45 loc) · 784 Bytes
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
.container {
width: 280px;
color: #ffffff;
}
.schemes-holder {
display: grid;
grid-template-columns: 1fr 1fr;
}
.title {
font-size: 15px;
font-weight: bold;
padding: 8px;
}
.scheme {
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient(30deg,
var(--color1) 0%,
var(--color1) 20%,
var(--color2) 20%,
var(--color2) 40%,
var(--color3) 40%,
var(--color3) 60%,
var(--color4) 60%,
var(--color4) 80%,
var(--color5) 80%,
var(--color5) 100%);
margin: 5px;
border-radius: 10px;
border-style: hidden;
border-width: 3px;
cursor: pointer;
}
.scheme-name {
font-size: 15px;
font-weight: bold;
color: black;
border-style: hidden;
border-width: 0px;
}
.selected {
border-style: solid;
color: white;
}