-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
85 lines (69 loc) · 1.09 KB
/
header.css
File metadata and controls
85 lines (69 loc) · 1.09 KB
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
@import 'https://fonts.googleapis.com/css?family=Raleway';
* {
margin: 0;
}
@font-face {
font-family: logo-font;
src: url(Odachi.otf);
}
.header {
background-color: #909090;
padding: 10px 0px 70px;
}
.header a {
outline: none;
float: left;
color: black;
padding: 10px 10px;
text-decoration: none;
font-size: 18px;
line-height: 12px;
border-radius: 4px;
}
.header a.logo {
margin-top: 10px;
font-family: logo-font;
font-size: 55px;
font-weight: bold;
}
.header-right a:hover {
padding-top: 9%;
background-color: #ddd;
color: black;
}
.header-right a:hover {
animation: animation 1s 1;
}
.header-right a:focus {
color: white;
background-color: rgb(85, 85, 85);
}
@keyframes animation {
0% {
padding-top: 0px;
}
100% {
padding-top: 9%;
}
}
.active {
background-color: rgb(85, 85, 85);
color: white;
}
.header a.active {
background-color: rgb(85, 85, 85);
color: white;
}
.header-right {
font-family: "Raleway", sans-serif;
float: right;
}
@media screen and (max-width: 670px) {
.header a {
float: none;
text-align: left;
}
.header-right {
float: none;
}
}