-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
47 lines (46 loc) · 816 Bytes
/
styles.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
html,
body {
margin: 0;
padding: 0;
}
header {
font: normal 14px sans-serif;
letter-spacing: 0.5px;
cursor: pointer;
background-color: #313b3f;
color: #d9a74a;
overflow: auto;
padding: 5px 20px 7px 15px;
position: relative;
.fat-arrow {
position: relative;
float: left;
height: 100%;
display: grid;
grid-template-columns: repeat(2, auto);
span {
font-size: 20px;
font-style: italic;
}
.caret {
font-size: 30px;
line-height: 22px;
display: inline-block;
font-weight: lighter;
}
}
a {
text-decoration: none;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
float: right;
color: #d9a74a;
}
}
@media screen and (max-width: 768px) {
header {
display: none;
}
}