-
Notifications
You must be signed in to change notification settings - Fork 0
/
browser.css
executable file
·58 lines (48 loc) · 912 Bytes
/
browser.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
55
56
57
58
/* bind the toolbar as the window's draggable region */
.navbar {
-webkit-app-region: drag;
}
@keyframes fadeIn {
0% { opacity: 0 }
100% { opacity: 1 }
}
.nav-currency {
-moz-transition: -moz-transform 1s,
transition: transform 1s,
-o-transition: -o-transform 1s,
-webkit-transition: -webkit-transform 1s;
}
.nav-currency:hover {
animation: fadeIn 200ms linear;
animation-iteration-count: 1
}
.nav-menu {
animation-name: nav-menu;
opacity: 0;
position: absolute;
top: 3px;
right: 12px;
}
.navbar:hover .nav-menu {
animation: fadeIn 200ms ease-in-out both 1;
}
.nav-menu > ul > li:first-child {
display: none;
}
.nav-logo {
margin: 0 auto;
}
/* .nav-logo {
margin-top: 14px;
margin-left: -10px;
width: 55px;
}
@media (min-width: 680px) {
.nav-logo{
width: 55px !important;
overflow: hidden !important;
}
} */
.posts-filters ul {
padding-left: 20px;
}