-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
98 lines (90 loc) · 2.28 KB
/
index.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
@import url("https://fonts.googleapis.com/css2?family=Dongle:wght@400;700&family=Stylish&display=swap");
* {
font-family: "Dongle", sans-serif;
font-family: "Stylish", sans-serif;
}
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.6;
}
.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;
}
.title {
color: white;
background-color: lightskyblue;
font-size: 24px;
padding: 8px 16px;
border-radius: 8px;
}
.bg {
width: 360px;
}
.bg::after{
width: 100%;
height: 100%;
content: "";
background-image: url("bg.png");
position: absolute;
top: 0;
left: 0;
z-index: -1;
opacity: 0.8;
}
.msg {
font-weight: bold;
}
.bucket {
width: 160px;
height: 160px;
}