-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (88 loc) · 2.1 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
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-weight: 200;
font-size: 21px;
letter-spacing: -.5px;
line-height: 28px;
color: #0E0E0F; }
@media screen and (max-width: 768px) {
body {
font-size: 19px; } }
body p {
margin-top: 0; }
#wrapper {
display: grid;
box-sizing: border-box;
overflow-x: hidden; }
#logo {
width: 150px; }
.jumbotron {
width: 100%;
box-sizing: border-box;
background-size: cover;
background: #0E0E0F; }
.jumbotron-logo {
width: 100%;
padding-bottom: 47%;
height: 0;
display: block;
background: #0E0E0F no-repeat url("https://firebasestorage.googleapis.com/v0/b/flatland-api.appspot.com/o/web-jumbo.png?alt=media&token=3b648500-681f-410c-942c-a0a40a45517d") center center;
background-size: cover;
margin: 0 0; }
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px;
font-size: 14px; }
nav {
display: flex; }
@media screen and (max-width: 768px) {
nav {
display: none; } }
nav a {
margin: 0 12px;
color: #fff;
text-decoration: none;
padding: 0 16px;
height: 42px;
display: flex;
align-items: center; }
nav a:hover {
color: #ccc; }
nav a:focus {
background: rgba(255, 255, 255, 0.2);
outline: none;
border-radius: 4px; }
.cta {
height: 42px;
text-decoration: none;
padding: 0 16px;
display: flex;
align-items: center;
color: #0E0E0F;
background: #fff;
border: 1px solid #fff;
border-radius: 4px;
transition: color 0.2s ease-out; }
.cta.subtle {
background: transparent;
color: #fff;
transition: background 0.2s ease-out, color 0.2s ease-out; }
.cta.subtle:focus, .cta.subtle:hover {
outline: none;
background: #fff;
color: #0E0E0F; }
.cta.primary {
width: 100px;
text-align: center;
justify-content: center;
background: #31817C;
color: #fff;
margin: 0 auto; }
@media screen and (max-width: 768px) {
#logo-name {
display: none; } }
/*# sourceMappingURL=style.css.map */