-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
70 lines (61 loc) · 1.38 KB
/
header.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
@font-face {
src: url("fonts/fira-sans.ttf");
font-family: 'Fira Sans';
}
@font-face {
src: url("fonts/google-sans.ttf");
font-family: 'Google Sans';
}
@font-face {
src: url("fonts/alfaslabone.ttf");
font-family: 'Alfa Slab One';
}
body {
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
margin: 0;
background-color: rgb(158, 158, 158);
}
div#content.main.center {
margin: auto;
padding-top: 20px;
margin-left: 70px;
}
header.locked#links {
display: flex;
background-color: rgb(255, 61, 61);
padding: 15px;
width: 290px;
left: -270px;
position: fixed;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 0 20px 20px 0;
flex-direction: column;
transition: all .5s cubic-bezier(.55, .06, .68, .19);
}
header.locked#links:hover {
left: 0;
transition: all .5s cubic-bezier(.55, .06, .68, .19);
}
a.big-button {
font-family: 'Google Sans',arial,sans-serif;
margin: 5px;
position: unset;
padding: 10px;
display: inline-block;
background-color: orangered;
text-decoration: none;
color: black;
border: 1px white solid;
border-radius: 4px;
}
a.big-button:hover {
background-color: orange;
border: 1px black solid;
border-radius: 8px;
}
header.locked#links a.header-a {
display: inline;
vertical-align: middle;
color: rgb(255, 177, 61);
}