-
Notifications
You must be signed in to change notification settings - Fork 1
/
data_css.css
74 lines (73 loc) · 1.11 KB
/
data_css.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
.container {
z-index: 1;
width: 100%;
margin: 0 auto;
border-radius: 24px;
background: #F6F5F0;
padding: 2%;
box-shadow: 0px 10px 6px -8px rgba(0,0,0,0.75);
}
.board {
column-count: 3;
column-gap: 1rem;
}
.container h2 {
margin: 0 0 30px;
text-align: center;
}
img#flag {
height: 30px;
width: 40px;
}
.card {
width: 84%;
background: #ccc;
padding: 8%;
margin-bottom: 20px;
border-radius: 6px;
color: #fff;
}
.card.a {
background: #41a7ff;
}
.card.cr {
background: #ff3434;
}
.card.r {
background: #32b336;
}
.card.ca {
background: #d83f3f;
}
.card.d {
background: #ff0053;
}
.card.t {
background: #ffa501;
}
.card h5 {
margin: 0;
font-size: 1rem;
}
.card span {
font-size: 3rem;
font-weight: 700;
letter-spacing: 4px;
}
.card i {
font-size: 3rem;
}
@media screen and (max-width: 768px){
.board {
column-count: 2;
}
.card span {
font-size: 2.5rem;
}
}
@media screen and (max-width: 500px){
.board {
column-count: 1;
}
}