-
Notifications
You must be signed in to change notification settings - Fork 1
/
body_4.css
79 lines (67 loc) · 1.36 KB
/
body_4.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fcf8e8;
color: black;
}
.container {
background-color: #ECB390;
max-width: 600px;
margin: 50px auto;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
margin-top: 30px; /* Adjust the margin as needed */
}
h1 {
font-size: 48px;
margin: 0;
}
.info-container {
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.info-line {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
}
.info-label {
width: 150px; /* Fixed width for labels */
}
.main-content {
text-align: center;
padding: 20px;
}
.box {
background-color: #D4E2D4;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.next-phase-time {
font-size: 18px;
margin-bottom: 20px;
}
.token-section {
display: flex;
flex-direction: column;
align-items: center;
}
.token-logo {
width: 100px;
height: auto;
margin-bottom: 10px;
}
.tokens-available {
font-size: 18px;
}