forked from stjet/Banano-Faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
131 lines (117 loc) · 2.47 KB
/
style.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
123
124
125
126
127
128
129
130
131
/* Ape Lincoln for President */
header {
height: 250px;
width: 100%;
margin-top: -1px;
background-position: bottom;
background-repeat: repeat;
background-size: cover;
background-repeat: no-repeat;
background-image: url(/Header\ Background.png);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
header img {
margin-top: 1%;
width: 33%;
max-width: 400px;
height: auto;
min-width: 225px;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Cantarell', sans-serif;
margin: 0 !important;
background-color: #212124;
overflow: wrap;
color:#FBDD11;
}
main {
padding-bottom: 19px;
}
@media(min-width: 768px) {
main {
width: 50%;
}
}
@media(max-width: 767px) {
main {
width: 80%;
}
}
p {
/* These are technically the same, but use both */
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
/* This is the dangerous one in WebKit, as it breaks things wherever */
word-break: break-all;
/* Instead use this non-standard one: */
word-break: break-word;
}
.address-input {
padding-bottom: 18px;
}
.btn-container {
width: 67%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
button {
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
box-sizing: border-box;
margin: 0;
font-family: inherit;
overflow: visible;
text-transform: none;
-webkit-appearance: button;
box-shadow: 0 7px 0 0 #e6c910!important;
width: 100%!important;
margin-top: 18px;
margin-bottom: 1.5rem!important;
font-weight: 700!important;
display: inline-block;
text-align: center;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
color: #212529;
background-color: #fbdd11;
border-color: #fbdd11;
padding: .5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: .3rem;
white-space: normal;
cursor: pointer;
}
footer {
width: 100%;
background-color: #4CBF4B;
height: 69px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
a,
a:hover,
a:visited {
color: #fbdd11;
font-weight: 700;
}
footer p a,
footer p a:hover,
footer p a:visited {
color: #fbdd11;
font-weight: 700;
}