blob: 8b9e4c9792e647737920bdf734d6bd2f6036337d (
plain)
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
|
@import 'src/style/_mixins.scss';
@import 'src/style/_variables.scss';
.navbar {
border-top: $blue 3px solid;
border-bottom: $gray-semi-dark 1px solid;
color: $gray-very-dark;
background: #fafafb;
}
.opendcBrand {
display: inline-block;
color: $gray-very-dark;
transition: background $transition-length;
img {
position: relative;
bottom: 3px;
display: inline-block;
width: 30px;
}
}
.login {
height: 40px;
background: $blue;
border: none;
padding-top: 10px;
@include clickable;
&:hover {
background: $blue-dark;
}
}
|