-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_makeup.css
99 lines (87 loc) · 1.6 KB
/
all_makeup.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
#makeup-items{
width: 100%;
height: auto;
border: 0px solid;
display: flex;
justify-content: space-around;
margin-top: 20px;
margin-bottom: 10px;
}
#options{
width: 18%;
height: max-content;
border: 0px solid;
line-height: 30px;
font-family: Arial, Helvetica, sans-serif;
}
#list{
width: 78%;
height: max-content;
border: 0px solid;
display: grid;
grid-template-rows: repeat(5, 380px);
grid-template-columns: repeat(4, 23%);
gap: 20px;
}
#list>div{
padding: 10px;
border: 0px solid;
}
#list>div>img{
width: 100%;
margin-bottom: -10px;
cursor: pointer;
}
#list>div>p{
margin-top: -15px;
margin-bottom: -1px;
}
#list>div>h3{
margin-top: -5px;
margin-bottom: -1px;
}
.checked{
color: gold;
}
#list>div>button{
border: none;
margin-top: 5px;
}
#list>div>button:first-child{
position: relative;
/* z-index: 1; */
left:83%;
width: 40px;
top: -10px;
height: 40px;
border-radius: 100%;
font-size: 35px;
cursor: pointer;
background-color: white;
}
#list>div>button:first-child::after{
content: ' \2661';
}
#list>div>button:first-child:hover{
background-color: whitesmoke;
}
#list>div {
position: relative;
display: inline-block;
}
#list>div .quick {
visibility: hidden;
width: 100%;
background-color: rgba(1,1, 1, 0.6);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
top: 60%;
}
#list>div:hover .quick {
visibility: visible;
}