-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 935 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (54 loc) · 935 Bytes
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
html, body {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #2b2d42, #8d99ae);
color: #fff;
}
.container {
max-width: 400px;
margin: 50px auto;
padding: 20px;
background: rgba(0, 0, 0, 0.4);
border-radius: 8px;
text-align: center;
}
h1 {
margin-top: 0;
margin-bottom: 20px;
}
.countdown {
font-size: 1.5em;
margin-bottom: 20px;
}
.wallet-button,
.claim-form button {
width: 100%;
padding: 10px;
border: none;
border-radius: 4px;
background: #ef233c;
color: #fff;
cursor: pointer;
font-size: 1em;
transition: background 0.2s ease-in-out;
}
.wallet-button:hover,
.claim-form button:hover {
background: #d90429;
}
.claim-form {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 20px;
}
.claim-form input {
padding: 10px;
border: none;
border-radius: 4px;
}
.status {
margin-top: 20px;
min-height: 1em;
}