-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
83 lines (78 loc) · 1.31 KB
/
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
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
html,
body {
width: 100%;
height: 100%;
margin: 0;
font-family: sans-serif;
}
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;
}
}
#employees,
#services,
#goals {
margin-left: 15px;
margin-top: 20px;
color: red;
}
p {
margin: 10px 0 20px 0;
padding-bottom: 10px;
border-bottom: 1px solid black;
}
.dashboard-link {
font: normal 14px sans-serif;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: lightgrey;
border-top: 1px solid black;
padding: 10px;
}
a {
text-decoration: none;
color: black;
font-style: italic;
}
.dashboard-link a:hover {
color: red;
}
@media screen and (max-width: 768px) {
header {
display: none;
}
}