-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_header.scss
More file actions
60 lines (48 loc) · 1.01 KB
/
_header.scss
File metadata and controls
60 lines (48 loc) · 1.01 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
.Header{
background-color: $header-bg;
display: flex;
align-items: center;
padding: 10px;
&-logo{
margin-right: 16px;
svg{
width: 32px;
height: 32px;
color: #fff;
}
}
&-search{
position: relative;
input{
background-color: hsla(0,0%, 100%, .125);
width: 300px;
height: 30px;
padding: 7px;
font-size: 12px;
color: #fff;
border: none;
margin-right: 16px;
border-radius: 3px;
}
svg{
position: absolute;
right: 25px;
top: 8px;
}
}
&-links{
a{
color: #fff;
margin-right: 16px;
font-family: $my-font;
font-size: 14px;
}
}
&-rightLinks{
margin-left: auto;
svg{
color: #ccc;
margin-left: 16px;
}
}
}