-
Notifications
You must be signed in to change notification settings - Fork 5
/
a.css
179 lines (154 loc) · 3.73 KB
/
a.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
.colorgraph {
height: 5px;
border-top: 0;
background: #c4e17f;
border-radius: 5px;
background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}
body {
background-color: #dedede;
}
.topbar {
background: #2A3F54;
border-color: #2A3F54;
border-radius: 0px;
}
.topbar .navbar-header a {
color: #ffffff;
}
.wrapper {
padding-left: 0px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.sidebar {
z-index: 1000;
position: fixed;
top: 50px;
left: -50px;
width: 50px;
height: 100%;
overflow-y: auto;
background: #2A3F54;
color: #ffffff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.main {
width: 100%;
position: relative;
padding-bottom:20px;
}
.wrapper.toggled {
padding-left: 50px;
}
.wrapper.toggled .sidebar {
left: 0;
}
/* Sidebar Styles */
.sidebar-nav {
position: absolute;
top: 52px;
width: 50px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
line-height: 40px;
}
.sidebar-nav li a {
display: block;
text-decoration: none;
color: #e8e8e8;
padding: 0;
text-align:center;
}
.sidebar-nav li a:hover, .sidebar-nav li.active a {
text-decoration: none;
color: #fff;
background: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav li span, .subbar li span {
display : none;
}
nav.subbar {
position: relative;
width: 100%;
border-radius: 0px;
background: #fff;
margin: 50px 0 -50px 0;
padding: 10px 0 0 0;
z-index: 2;
}
nav.subbar > ul.nav.nav-tabs {
padding: 0 5px;
}
nav.subbar > ul.nav.nav-tabs > li.active > a {
background: #dedede;
border-top: 1px solid #a6a6a6;
border-left: 1px solid #a6a6a6;
border-right: 1px solid #a6a6a6;
border-radius: 0px;
}
.content {
margin-top: 70px;
padding: 0 30px;
}
@media(min-width:768px){
.subbar li span {
display: inline;
}
}
@media(min-width:992px) {
.wrapper {
padding-left: 50px;
}
.sidebar {
left: 0;
width: 50px;
}
.wrapper.toggled {
padding-left: 200px;
}
.wrapper.toggled .sidebar, .wrapper.toggled .sidebar-nav {
width: 200px;
}
.wrapper.toggled .sidebar-nav li a {
text-align: left;
padding: 0 0 0 10px;
}
.wrapper.toggled .sidebar-nav li span {
display: inline;
}
}
.navbar-btn {
background: none;
border: none;
height: 35px;
min-width: 35px;
color: #fff;
}
.navbar-text {
margin-top: 14px;
margin-bottom: 14px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
}