-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbucket.css
61 lines (57 loc) · 1.2 KB
/
bucket.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
html {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.bucket {
background-size: cover;
background-position: center;
margin: 8px;
position: relative;
font-weight: bold;
font-size: 16px;
text-align: center;
word-break: keep-all;
}
.flex-row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.done::after {
content: "";
width: 100%;
height: 100%;
background-image: url("goodjob.png");
background-size: contain;
background-position: center;
position: absolute;
top: 20%;
opacity: 0.7;
}
.wrap {
flex-wrap: wrap;
}
.msg {
margin: -10px 0 30px;
color: black;
}
.img1-t2 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-blue.png");
color: white;
}
.img2-t2 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightblue.png");
color: blue;
}
.hidden {
visibility: hidden;
}