-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (71 loc) · 1.19 KB
/
style.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
80
@font-face {
font-family: Inter;
src: url("https://cdn.jsdelivr.net/gh/gravymcstrut/web3-tool-kit/e79de15044935137-s.p.woff2")
format("woff2");
}
* {
font-family: "Inter", sans-serif;
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
height: 100%;
background: #1c1c26;
}
h1 {
font-size: 1rem;
font-weight: 100;
color: #ffffff82;
margin-top: 2rem;
}
.root {
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
}
.container {
color: white;
font-size: 1.4rem;
width: 13em;
text-align: center;
display: flex;
flex-direction: column;
height: 500px;
padding: 0 1.5rem;
}
@media (max-width: 768px) {
.container {
height: 100vh;
}
}
.container b {
font-size: 1.5rem;
}
.container img {
width: 9em;
margin: 5px;
}
.container svg {
margin-top: 10rem;
}
.btn {
background: #a79fe8;
color: white;
border: none;
margin-top: auto;
margin-bottom: 4rem;
padding: 12px 24px;
border-radius: 5px;
transition: 100ms ease-in-out;
width: 100%;
font-size: 1.1rem;
}
.btn:hover {
cursor: pointer;
background: #8035f0;
}