-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
128 lines (111 loc) · 2.08 KB
/
style.scss
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
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) {
font-size: 19px;
}
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) {
display: none;
}
}
nav a {
margin: 0 12px;
color: #fff;
text-decoration: none;
padding: 0 16px;
height: 42px;
display: flex;
align-items: center;
&:hover {
color: #ccc;
}
&: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;
&:focus,
&: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;
}
}