-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfnorders.css
60 lines (51 loc) · 1.23 KB
/
fnorders.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
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 600;
src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'), url('fonts/montserrat-v10-latin-600.woff2') format('woff2'), url('fonts/montserrat-v10-latin-600.woff') format('woff');
}
* {
box-sizing: border-box;
}
body {
color: white;
font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
background: black url(images/icons/scalable.svg) no-repeat 50% 50%;
background-size: contain;
text-align: center;
font-size: 24px;
}
main {
width: 90%;
max-width: 600px;
margin: 0 auto;
}
#fnorders-wrapper {
min-height: 9em;
}
#fnorders-prefix {
font-size: 32px;
}
button {
font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
font-size: 22px;
color: black;
padding: 10px 20px;
background: linear-gradient(to bottom, white 0%, white 50%, #b5b5b5);
border-radius: 10px;
border: 0px solid #2ea100;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5), inset 0px 0px 3px rgba(255, 255, 255, 1);
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(255, 255, 255, 1);
outline: 0;
}
footer {
margin-top: 40px;
font-size: 50%;
font-family: sans-serif;
}
a {
color: white;
}
a:hover {
background: #0f1579;
}