-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.css
242 lines (233 loc) · 3.9 KB
/
admin.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
* {
box-sizing: border-box;
}
body {
margin: 0;
paddin: 0;
font-family: 'Source Sans Pro', sans-serif;
background-color: #d5dae5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.header {
position: absolute;
width: 100%;
z-index: 3;
height: 44px;
background-color: #fff;
border-bottom: 3px solid #2d3d51;
}
/* logo in header(mobile version) and side-nav (tablet & desktop) */
.logo {
display: none;
}
.side-nav{
background-color: #00ff00;
}
.nav-trigger {
position: relative;
float: right;
width: 20px;
height: 44px;
right: 30px;
display: block;
}
.nav-trigger span, .nav-trigger span:before, span:after {
width: 20px;
height: 2px;
background-color: green;
position: absolute;
}
.nav-trigger span {
top: 50%;
}
.nav-trigger span:before, .nav-trigger span:after {
content: '';
}
.nav-trigger span:before {
top: -6px;
}
.nav-trigger span:after {
top: 6px;
}
/* side navigation styles */
.side-nav {
position: absolute;
width: 100%;
height: 100vh;
background-color:green;
z-index: 1;
display: none;
}
.side-nav.visible {
display: block;
}
.side-nav ul {
margin: 0;
padding: 0;
}
.side-nav ul li {
padding: 16px 16px;
border-bottom: 1px solid #3c506a;
position: relative;
}
/*.side-nav ul li.active:before {
content: '';
position: absolute;
width: 4px;
height: 100%;
top: 0;
left: 0;
background-color: #fff;
}*/
.side-nav ul li a {
color: #fff;
display: block;
text-decoration: none;
}
.side-nav ul li i {
color: #0497df;
min-width: 20px;
text-align: center;
}
.side-nav ul li span:nth-child(2) {
margin-left: 10px;
font-size: 14px;
font-weight: 600;
}
/* main content styles */
.main-content {
padding: 40px;
margin-top: 0;
padding: 0;
padding-top: 44px;
height: 100%;
overflow: scroll;
}
.main-content .title {
background-color: #eef1f7;
border-bottom: 1px solid #b8bec9;
padding: 10px 20px;
font-weight: 700;
color: #333;
font-size: 18px;
}
/* set element styles to fit tablet and higher(desktop) */
@media screen and (min-width: 600px) {
.header {
background-color: green;
z-index: 1;
}
.header .logo {
display: none;
}
.nav-trigger {
display: none;
}
.nav-trigger span, .nav-trigger span:before, span:after {
background-color: #fff;
}
.side-nav {
display: block;
width: 70px;
z-index: 2;
}
.side-nav ul li span:nth-child(2) {
display: none;
}
.side-nav .logo i {
padding-left: 12px;
}
.side-nav .logo span {
display: none;
}
.side-nav ul li i {
font-size: 26px;
}
.side-nav ul li a {
text-align: center;
}
.main-content {
margin-left: 70px;
}
.widget {
/*flex-basis: 300px;
flex-grow: 10;*/
height: 300px;
width: 47%;
margin: 15px;
border-radius: 6px;
background-color: #ffffff;
position: relative;
}
}
/* set element styles for desktop */
@media screen and (min-width: 800px) {
.side-nav {
background-color: green;
width: 200px;
}
.side-nav ul li span:nth-child(2) {
display: inline-block;
}
.side-nav ul li i {
font-size: 16px;
}
.side-nav ul li a {
text-align: left;
}
.side-nav .logo {
background-color: green;
padding-top: 3px;
padding-right: 0px;
padding-left: 3px;
display: inline-block;
}
.main-content {
margin-left: 200px;
}
}
/* main box container */
.main {
display: block;
flex-flow: row wrap;
height: 500px;
width: 1000px;
}
.widget {
/*flex-basis: 300px;
flex-grow: 10;*/
float: left;
height: 300px;
width: 47%;
margin: 15px;
border-radius: 6px;
background-color: #ffffff;
position: relative;
}
.widget .title {
background-color: lime;
border-bottom: 1px solid #dfe4ec;
padding: 10px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
color: #617085;
font-weight: 600;
}
/*------Main div styling----*/
.mainDiv{
height: 500px;
width: 500px;
}
/* styling button*/
button {
cursor: pointer;
color: #fff;
display: inline-block;
border: 0;
background: none;
box-shadow: none;
border-radius: 0px;
font-weight: bold;
font-size: 12px;
}