-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
133 lines (121 loc) · 2.35 KB
/
Copy pathStyle.css
File metadata and controls
133 lines (121 loc) · 2.35 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body{
height: 100vh;
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
background: url(https://pro2-bar-s3-cdn-cf.myportfolio.com/4d29a4ffc41663d7f15cc554c9e98126/81a56448f778080e29579b0be1f98e6e0fb77bfdee268ef992fd81a3434936ecb0b3ef0acd8dc3c9.gif?h=c872a6f4c0583d8895277913040b1681);
background-position: center; /* Center the image */
background-repeat: repeat; /* Do not repeat the image */
background-size: cover;
}
.container {
z-index: 1;
width: 70%;
margin: 0 auto;
border-radius: 24px;
background: rgba(255, 255, 255, 0.2);
padding: 2%;
box-shadow: 0px 10px 6px -8px rgba(0,0,0,0.75);
}
.board {
column-count: 4;
column-gap: 1rem;
}
.container h2 {
margin: 0 0 30px;
text-align: center;
}
img#flag {
height: 25px;
width: 25px;
}
.card {
width: 80%;
background: #ccc;
padding: 8%;
margin-bottom: 20px;
border-radius: 6px;
color: #fff;
}
.card.a {
background: url(https://i.makeagif.com/media/12-21-2015/EgD1hy.gif);
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover;
}
.card.cr {
background: #ff3434;
}
.card.r {
background: #32b336;
}
.card.ca {
background: #d83f3f;
}
.card.d {
background: #ff0053;
}
.card.t {
background: #ffa501;
}
.card.t1 {
background: #0f4e81;
}
.card.t2 {
background: #0a6152;
}
.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;
}
.container{
margin-top: 1020px;
margin-bottom: 30px;
}
}
@media screen and (max-width: 375px){
.board {
column-count: 1;
}
.container{
margin-top: 1070px;
margin-bottom: 30px;
}
}
@media screen and (max-width: 384px){
.board {
column-count: 1;
}
.container{
margin-top: 1120px;
margin-bottom: 30px;
}
}
#currentTime {
font-size: 1em;
text-align: center;
font-family: 'Oswald';
font-weight: 300;
color: #fff;
}