-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.css
More file actions
100 lines (88 loc) · 1.57 KB
/
nav.css
File metadata and controls
100 lines (88 loc) · 1.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
nav {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 20px;
color: #fff;
background-color: #F1F1F1;
}
.blk-txt {
color: black;
}
.nav_trigger {
cursor: pointer;
display: inline-block;
font-size: 26px;
margin: 5px 20px 0 50px;
float:right;
}
.nav_logout {
cursor: pointer;
display: inline-block;
font-size: 26px;
margin: 5px 20px 0 50px;
float:right;
}
#push_sidebar {
background: #31373d;
border-left: 0px solid #ddd;
bottom: 0;
color: #95A7B7;
right: 100%;
overflow: auto;
position: fixed;
top: 0;
width: 25%;
-webkit-transition: all .50s ease;
-moz-transition: all .50s ease;
-ms-transition: all .50s ease;
-o-transition: all .50s ease;
transition: all .50s ease;
}
@media (max-width: 767px) {
.nav_trigger {
font-size: 19px;
margin: 5px 5px 0 20px;
}
#push_sidebar {
width: 80%;
}
body.show_sidebar #push_sidebar {
right: 20%;
}
body.show_sidebar #wrapper {
margin-right: 80%;
width: 20%;
}
}
@media (min-width: 992px) {
#push_sidebar {
width: 20%;
}
body.show_sidebar #push_sidebar {
right: 80%;
}
body.show_sidebar #wrapper {
margin-right: 20%;
width: 80%;
}
}
/***********************************/
#push_sidebar li a {
padding: 10px 15px 10px 5px;
display: block;
font: 13px Tahoma, Arial, serif;
background: #31373d;
color: #95A7B7;
text-decoration: none;
border-bottom: 1px solid #3D454C;
}
#push_sidebar li a:hover {
background-color: #272c30;
color:#95A7B7
}
#push_sidebar li a .fa {
font-size: 19px;
float: right;
width: 30px;
text-align: center;
margin-left: 5px;
}