-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (83 loc) · 1.72 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
text-align: center;
background-repeat: no-repeat;
background-size: contain;
color: #eae7e8;
font-family: Arial, Helvetica, sans-serif;
}
.title {
color: rgb(154, 9, 146);
font-size: 2.5rem;
margin: 2% auto;
}
.color-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr ;
row-gap: 0.7rem;
position: absolute;
width: 97vw;
margin-left: 2.7vw;
column-gap: 1rem;
/* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
}
.color-item {
background-color: antiquewhite;
border-radius: 5px;
border: none;
padding: 10px;
text-align: center;
min-width: 200px;
cursor: pointer;
position: relative;
}
.btn {
background-color: #b5b4b4;
padding: 0.5rem 0.6rem;
border: none;
cursor: pointer;
position: absolute;
right: 1rem;
width: 1rem;
height: 1.5rem;
top: 50%;
transform: translateY(-50%);
}
.btn::after{
content: "";
position: absolute;
background-color: rgb(184, 182, 182);
left: 3px;
height: 100%;
width: 100%;
border: none;
top: 3px;
z-index: 3;
border-top: 1px solid #3e3d3d;
border-left: 1px solid #3e3d3d;
}
.btn:active {
border: 2px transparent solid;
}
.toast{
border-radius: 0.4rem;
background-color: #1b1b1b;
padding: 0.8rem 1rem;
font-weight: 300;
letter-spacing: 1px;
position: fixed;
left: 50%;
transform: translateX(-50%);
top: 1rem;
z-index: 4;
color: #1cef00;
}
.hidden{
display: none;
}