-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.css
54 lines (54 loc) · 1.12 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
@font-face {
font-family: HonakaMaruGothic;
src: url("./Resources/font_1_honokamarugo_1.1.ttf");
}
header{
position: fixed;
width: 100%;
height: 60px;
font-family: HonakaMaruGothic, "Arial Rounded MT", Arial, sans-serif;
padding: 10px 20px;
background-color: white;
top:-80px;
z-index: 10;
box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
display: flex !important;
transition: all 1s;
}
header img{
height: 100%;
}
#right{
width: 100%;
justify-content: flex-end;
padding-right: 30px;
}
header button{
padding: 5px 10px 5px 0;
margin: 10px;
color: #4CAF50;
display: flex;
align-items: center;
font-family: HonakaMaruGothic, "Arial Rounded MT", Arial, sans-serif;
font-size: 1em;
font-weight: bold;
border: none;
border-radius: 10px;
background-color: #EEE;
outline: none;
}
header *{
transition: all 0.2s;
}
header .current{
background-color: yellow;
border: 4px solid #008000;
}
header .selectable:hover{
background-color: #008000;
color:yellow;
cursor: pointer;
}
header button svg{
height: 30px;
}