-
Notifications
You must be signed in to change notification settings - Fork 701
Expand file tree
/
Copy pathApp.scss
More file actions
96 lines (85 loc) · 1.54 KB
/
App.scss
File metadata and controls
96 lines (85 loc) · 1.54 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
body {
font-family: "Muli", sans-serif;
font-weight: 300;
background-color: #e2e8f0;
padding: 40px;
}
label {
display: flex;
flex-direction: column;
letter-spacing: 0.05rem;
font-size: .8em;
font-weight: 400;
color: #222;
}
.app {
display: flex;
max-width: 1400px;
flex-wrap: wrap;
gap: 12px;
margin: 0 auto;
}
.container {
flex-grow: 1;
margin: 0 20px;
background-color: #fff;
border: 1px solid #cbd5e0;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
border-radius: 0.375rem;
padding: 40px;
label {
margin: 10px 0;
}
.button {
margin-top: 10px;
}
}
input {
padding: 10px 0;
border-radius: 0.125rem;
border: 1px solid rgb(226, 232, 240);
background-color: #fdfdfe;
padding-inline-start: 0.75rem;
font-size: 0.875rem;
}
.button {
background-color: #319795;
border-radius: 0.125rem;
padding: 10px 20px;
color: white;
display: inline-flex;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 400;
font-size: .9em;
&:hover {
cursor: pointer;
}
}
.wallet {
display: flex;
flex-direction: column;
.balance {
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 400;
font-size: .9em;
display: inline-flex;
margin-top: 10px;
padding: 0.75rem;
background-color: #f4f6f8;
}
}
.transfer {
display: flex;
flex-direction: column;
.signature {
letter-spacing: 1px;
font-weight: 400;
font-size: .9em;
display: inline-flex;
margin-top: 10px;
padding: 0.75rem;
background-color: #f4f6f8;
}
}