EditorHeader.scss
831 Bytes
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
.my-header {
position: fixed;
width: 100%;
height: 50px;
z-index: 10;
button {
background: none;
color: white;
float: right;
height: 35px;
margin-top: 20px;
font-size: 25px;
border: none;
border-radius: 5px;
margin-right: 15px;
cursor: pointer;
padding: 0 10px;
&:focus {
outline: none;
}
&:hover {
transition: 0.2s;
transform: scale(1.2);
}
}
.submenu-toggle {
position: absolute;
left: 90px;
background: none;
color: gray;
font-size: 20px;
&.activate {
color: white;
}
&:hover {
transform: scale(1.15);
transition: 0.2s;
}
}
.file-box {
.file-box-button {
//background: white;
cursor: pointer;
}
#input-image-file {
display: none;
}
}
}