-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (33 loc) · 693 Bytes
/
Copy pathstyle.css
File metadata and controls
41 lines (33 loc) · 693 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
:root {
--secondary-color: rgb(255, 255, 255);
}
body {
width: 150px;
border-style: solid;
border-color: var(--secondary-color);
border-width: 3px;
padding-bottom: 15px;
background-color: #051642;
}
h1 {
text-align: center;
color: var(--secondary-color);
}
.transfer-button {
width: 130px;
height: 65px;
display: block;
margin: auto;
border-style: double;
border-color: var(--secondary-color);
border-width: 7px;
background-color: #1568d4;
font-size: 20;
font-weight: bold;
color: var(--secondary-color);
border-radius: 20px;
}
.info-text {
text-align: center;
color: var(--secondary-color);
}