-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcustom.css
More file actions
110 lines (93 loc) · 1.58 KB
/
Copy pathcustom.css
File metadata and controls
110 lines (93 loc) · 1.58 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
/* ---------------------------CUSTOM STYLING---------------------------- */
/* Dino Font by Devfolio */
@font-face {
font-family: 'OnchainDino';
src: url('extra/OnchainDino-Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
.trex-game {
max-width: 600px;
width: 100%;
}
.trex-game .runner-container {
transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: OnchainDino;
text-transform: uppercase;
color: rgb(122, 122, 122);
}
.container {
display: flex;
align-items: center;
flex-direction: column;
gap: 32px;
}
.header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.config-box {
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
font-family: OnchainDino;
text-transform: uppercase;
color: rgb(122, 122, 122);
}
.flex-box {
display: flex;
gap: 48px;
justify-content: space-between;
}
/* Mobile Screen */
@media screen and (max-width: 768px) {
.flex-box {
flex-direction: column;
gap: 24px;
}
}
.flex-item {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
}
.flex-item input {
width: 180px;
}
.onchain-cta {
background-color: transparent;
border: none;
outline: none;
margin-top: 32px;
margin-bottom: 16px;
cursor: pointer;
}
.onchain-cta:active {
scale: 0.95;
}
.link-section {
margin-top: 32px;
display: flex;
flex-direction: column;
gap: 16px;
justify-content: center;
align-items: center;
}
a {
font-size: 16px;
color: rgb(122, 122, 122);
}
a:active {
scale: 0.95;
}