mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
21.02.2021 b0a515f343fd03e575c8de48dc7e14823d344c17
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
.menu {
    float: right;
    padding-top: 30px;
}
 
.menu .btn-down {
    margin: 0px;
}
 
.menu .btn-down li {
    list-style: none;
    width: 100px;
}
 
.menu .btn-down li a {
    display: inline-block;
    position: relative;
    padding: 0.5em 1.25em;
    outline: 0;
    color: $post-color;
    background: transparent;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid $border-color;
    white-space: nowrap;
    font-weight: 400;
    font-style: normal;
    border-radius: 999em;
    margin-top: 5px;
}
 
.menu .btn-down li a:hover {
    position: relative;
    padding: 0.5em 1.25em;
    outline: 0;
    color: #fff;
    background: #3CBD10;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-weight: 400;
    font-style: normal;
    border-radius: 999em;
    margin-top: 5px;
}
 
.menu .btn-down div {
    position: absolute;
    visibility: hidden;
    width: 100px;
    float: right;
}
 
.navbar-burger {
    display: none;
}