-
Notifications
You must be signed in to change notification settings - Fork 2
/
global.css
122 lines (108 loc) · 2.03 KB
/
global.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
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
111
112
113
114
115
116
117
118
119
120
121
122
body {
width: 300px;
background: #000;
color: white;
padding: 0px;
}
:root {
--primary: rgb(76, 175, 80);
}
.navbar {
display: flex;
padding: 0.5rem;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #fafafa;
}
.balance-text {
font-size: 16px;
color: #fff;
font-weight: bold;
}
.navbar-button {
color: var(--primary);
border: 1px solid var(--primary);
border-radius: 5px;
padding: 0.5rem;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.navbar-button:hover {
background-color: var(--primary);
color: white;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px 0;
padding: 0.5rem;
}
.tile {
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
}
.tile-title {
font-size: 14px;
color: #fff;
}
.tile-button {
background:rgba(255,255,255, 0.2);
border-radius: 5px;
color: white;
padding: 0.5rem;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.action {
padding: 0.5rem 0;
}
.action-button {
background:rgba(255,255,255, 0.2);
border-radius: 5px;
width: calc(100% - 1rem);
color: white;
padding: 0.5rem;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.primary-button {
background:rgba(255,255,255, 0.2);
border-radius: 5px;
color: white;
padding: 0.5rem;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.logo {
width: 100px;
height: 100px;
object-fit: fill;
}
.user-input {
width: 100%;
background: rgba(255,255,255, 0.4);
color: white;
border: none;
outline: none;
padding: 0.5rem;
border-radius: 5px;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
width: 100%;
}