-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
120 lines (103 loc) · 1.82 KB
/
styles.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
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
a {
text-decoration: none;
}
body {
font-family: 'Montserrat', sans-serif;
color: #456268;
background-color: #fcf8ec;
font-size: 1.5em;
}
header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
background-image: url("./images/bitcoin2.png");
background-repeat: no-repeat;
background-position: center;
}
#version {
font-size: .2em;
}
h1 {
font-family: 'Merriweather', serif;
margin: 20px 0px;
text-align: center;
}
.about-app {
max-width: 75vw;
background-color: #d0e8f2;
text-align: center;
margin: 20px auto;
padding: 20px;
}
form {
text-align: center;
}
form input {
padding: 20px;
text-align: center;
font-size: 1em;
border-radius: 10px;
}
form input {
margin: 10px 0px;
}
.buttonDiv {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 100vw;
}
button {
width: 200px;
padding: 20px;
background-color: #222;
color: #ccc;
border-radius: 10px;
font-size: 1.2em;
margin: 20px 10px;
}
button:hover {
background-color: teal;
color: #222;
}
.totals {
display: none;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100vw;
text-align: center;
line-height: 50px;
}
.donations li {
font-size: .8em;
margin: 5px 0px;
}
.crypto-wallet {
color: #79a3b1;
}
footer {
font-size: .8em;
text-align: center;
margin: 50px auto;
padding: 10px;
max-width: 500px;
}
footer li {
list-style: none;
}
/*# sourceMappingURL=styles.css.map */