-
Notifications
You must be signed in to change notification settings - Fork 0
/
updates.css
52 lines (46 loc) · 1001 Bytes
/
updates.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
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #0E371B;
background-image: linear-gradient(to right, #0E371B, #F0F6F3);
color: white;
font-family: "Glegoo", serif;
font-weight: 400;
font-style: normal;
padding-top: 20px;
}
#logo {
margin-bottom: 20px;
}
#updates {
font-weight: bold;
font-size: 24px;
text-align: center;
margin-bottom: 20px;
}
.box-container {
display: flex;
justify-content: center;
align-items: center;
max-width: 800px;
gap: 20px; /* Adjust the gap between boxes */
}
.box {
background-color: rgba(255, 255, 255, 0.5);
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
width: 250px; /* Fixed width for boxes */
text-align: center;
color: #0E371B;
}
.short-info {
margin-bottom: 10px;
}
.short-info span {
display: block;
margin-bottom: 5px;
}