bootstrap-intel-theme 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ /*
2
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
5
+ *= require_self
6
+ *= require bootstrap/bootstrap
7
+ *= require intel/layout
8
+ *= require intel/responsive
9
+ */
@@ -0,0 +1,451 @@
1
+ $menu_width: 200px;
2
+
3
+ #layout {
4
+ padding-left: $menu_width;
5
+ }
6
+
7
+ #menu-toggle {
8
+ display: none;
9
+ }
10
+
11
+ #menu {
12
+ left: $menu_width;
13
+ margin-left: -$menu_width;
14
+ width: $menu_width;
15
+ position: fixed;
16
+ top: 0;
17
+ bottom: 0;
18
+ background: #333;
19
+ color: #FFF;
20
+
21
+ .nav {
22
+ .active a {
23
+ box-shadow: inset 5px 0 white;
24
+ }
25
+
26
+ a {
27
+ color: white;
28
+ padding: 15px 20px;
29
+ }
30
+
31
+ a:hover, .active a {
32
+ background: #222;
33
+ }
34
+
35
+ li {
36
+ margin: 0;
37
+ }
38
+
39
+ li.nav-header {
40
+ padding: 10px 14px;
41
+ text-transform: uppercase;
42
+ font-size: 13px;
43
+ color: #999;
44
+ }
45
+ }
46
+ }
47
+
48
+ #logged-user {
49
+ margin: 20px 0 15px;
50
+ font-size: 13px;
51
+ padding: 0 15px;
52
+
53
+ img {
54
+ width: 53px;
55
+ }
56
+
57
+ .description {
58
+ padding-left: 0;
59
+ }
60
+
61
+ strong {
62
+ display: block;
63
+ text-overflow: ellipsis;
64
+ white-space: nowrap;
65
+ overflow: hidden;
66
+ }
67
+
68
+ ul {
69
+ margin-bottom: 0;
70
+ }
71
+
72
+ li {
73
+ display: block;
74
+
75
+ a {
76
+ color: #DDD;
77
+ }
78
+ }
79
+ }
80
+
81
+ .header, .content {
82
+ padding-left: 2em;
83
+ padding-right: 2em;
84
+ }
85
+ .header {
86
+ margin: 0;
87
+ text-align: center;
88
+ padding: 2.5em 2em 0;
89
+ border-bottom: 1px solid #eee;
90
+
91
+ h1 {
92
+ margin: 0.2em 0 1em;
93
+ font-size: 3em;
94
+ font-weight: 300;
95
+
96
+ small {
97
+ font-size: 18px;
98
+ font-weight: 300;
99
+ display: block;
100
+ }
101
+ }
102
+ }
103
+
104
+ .content {
105
+ padding-top: 1.5em;
106
+ padding-bottom: 1.5em;
107
+ }
108
+
109
+ .btn {
110
+ box-shadow: inset 0 -3px rgba(0, 0, 0, 0.2);
111
+ border: 0;
112
+ text-transform: uppercase;
113
+ font-size: 13px;
114
+ padding: 10px 16px 11px;
115
+ }
116
+
117
+ .btn.btn-default {
118
+ background: #DDD;
119
+ }
120
+
121
+ #logo {
122
+ width: 100px;
123
+ /*height: 100px;*/
124
+ margin-top: 20px;
125
+ }
126
+
127
+ #site-name {
128
+ margin-top: 10px;
129
+ margin-bottom: 15px;
130
+ font-size: 24px;
131
+ text-align: center;
132
+ font-weight: 300;
133
+ }
134
+
135
+ .grand-total {
136
+ font-size: 32px;
137
+ font-weight: bold;
138
+ }
139
+
140
+ /* Progress */
141
+ .big-progress-bar {
142
+ position: relative;
143
+ padding-bottom: 26px;
144
+
145
+ .progress {
146
+ margin-bottom: 0;
147
+ height: 50px;
148
+ border-radius: 25px;
149
+ }
150
+
151
+ .progress-bar {
152
+ text-align: left;
153
+ }
154
+
155
+ .progress span {
156
+ position: absolute;
157
+ margin-left: 25px;
158
+ line-height: 50px;
159
+ font-size: 32px;
160
+ color: #333;
161
+ font-weight: bold;
162
+ }
163
+
164
+ .goal, .info {
165
+ position: absolute;
166
+ bottom: 0px;
167
+ font-size: 15px;
168
+ color: #777;
169
+ line-height: 24px;
170
+ }
171
+
172
+ .goal {
173
+ right: 5px;
174
+ }
175
+
176
+ .info {
177
+ left: 5px;
178
+ }
179
+
180
+ .progress-bar.ghost {
181
+ border-right: 2px solid #333;
182
+ z-index: 10;
183
+ position: absolute;
184
+ background: transparent;
185
+ height: 50px;
186
+ box-shadow: none;
187
+ opacity: 0.5;
188
+ }
189
+ }
190
+
191
+ h3.subtitle {
192
+ font-weight: 300;
193
+ border-bottom: 1px solid #EEE;
194
+ padding-bottom: 0.5em;
195
+ margin-bottom: 1em;
196
+ font-size: 18px;
197
+ }
198
+
199
+ .page-menu {
200
+ border: 0;
201
+ margin-bottom: 0;
202
+
203
+ .nav {
204
+ border-radius: 0;
205
+ width: 100%;
206
+ border-bottom: 1px solid #EEE;
207
+
208
+ li:first-child a {
209
+ border-left: 0;
210
+ }
211
+
212
+ a {
213
+ border-left: 1px solid #EEE;
214
+ color: #333;
215
+ text-transform: uppercase;
216
+ }
217
+ }
218
+ }
219
+
220
+ .table.table-with-actions tbody td {
221
+ vertical-align: middle;
222
+ font-size: 15px;
223
+ }
224
+ td.picture-column {
225
+ width: 60px;
226
+ }
227
+ td.two-lines-column {
228
+ strong {
229
+ display: block;
230
+ }
231
+ }
232
+ table.beheaded-table tr:first-child td {
233
+ border-top: 0;
234
+ }
235
+
236
+ /* Utils */
237
+ .align-center {
238
+ margin-left: auto;
239
+ margin-right: auto;
240
+ text-align: center;
241
+ }
242
+ .align-right {
243
+ text-align: right;
244
+ }
245
+
246
+ .chart-centered {
247
+ margin-left: auto;
248
+ margin-right: auto;
249
+ }
250
+
251
+ /* Alerts */
252
+ .alert {
253
+ padding: 20px;
254
+ margin: 0 0 20px;
255
+ border: 1px solid #eee;
256
+ border-left-color: #f0ad4e;
257
+ border-left-width: 5px;
258
+ border-radius: 3px;
259
+
260
+ h4 {
261
+ margin-top: 0;
262
+ margin-bottom: 5px;
263
+ color: #f0ad4e;
264
+ }
265
+
266
+ p {
267
+ font-size: 15px;
268
+ }
269
+
270
+ &.main-alert {
271
+ border-radius: 0;
272
+ margin: 0;
273
+ border-top-width: 0;
274
+ border-right-width: 0;
275
+ border-bottom-width: 0;
276
+ }
277
+
278
+ &.alert-success {
279
+ border-left-color: green;
280
+ }
281
+ }
282
+
283
+ .label.big-label {
284
+ font-size: 15px;
285
+ }
286
+
287
+ .table caption {
288
+ text-transform: uppercase;
289
+ padding-bottom: 0.3em;
290
+ font-size: 16px;
291
+ font-weight: 300;
292
+ text-align: left;
293
+ }
294
+
295
+ .avatar-thumb {
296
+ width: 60px;
297
+ }
298
+
299
+ .media .avatar-big {
300
+ margin-right: 20px;
301
+ width: 120px;
302
+ }
303
+ .media h3.subtitle {
304
+ margin-top: 3px;
305
+ margin-bottom: 10px;
306
+ }
307
+ .media.big-user-section h4 {
308
+ margin-bottom: 5px;
309
+ }
310
+
311
+ .section {
312
+ margin-bottom: 30px;
313
+ }
314
+ .small-section {
315
+ margin-bottom: 15px;
316
+ }
317
+
318
+ .no-margin-bottom, h3.subtitle.no-margin-bottom {
319
+ margin-bottom: 0;
320
+ }
321
+ .no-margin-top, h3.subtitle.no-margin-top {
322
+ margin-top: 0;
323
+ }
324
+
325
+ /* Comments */
326
+ .comments > li {
327
+ position: relative;
328
+
329
+ .avatar {
330
+ margin-right: 20px;
331
+ }
332
+
333
+ .media-body {
334
+ background: lighten(#d9dcee, 5%);
335
+ padding: 15px 20px;
336
+
337
+ > h4 {
338
+ margin-top: 0;
339
+ font-size: 14px;
340
+ margin-bottom: 5px;
341
+ }
342
+
343
+ p:last-child {
344
+ margin-bottom: 0;
345
+ }
346
+ }
347
+ }
348
+
349
+ .arrow {
350
+ border-width: 10px;
351
+ position: absolute;
352
+ display: block;
353
+ width: 0;
354
+ height: 0;
355
+ border-color: transparent;
356
+ border-style: solid;
357
+ }
358
+ .arrow-left {
359
+ top: 22px;
360
+ border-right-color: lighten(#d9dcee, 5%);
361
+ border-left-width: 0;
362
+ left: 70px;
363
+ }
364
+ .arrow:after {
365
+ border-width: 11px;
366
+ content: "";
367
+ }
368
+
369
+ dl.dl-horizontal {
370
+ dt, dd {
371
+ margin-bottom: 4px;
372
+ }
373
+ }
374
+
375
+ .empty-resultset-alert {
376
+ padding: 15px 20px;
377
+ background: lighten(#d9dcee, 5%);
378
+ font-style: italic;
379
+ }
380
+
381
+ /* Modal */
382
+ .modal-content {
383
+ border-radius: 0;
384
+ }
385
+
386
+ .status {
387
+ border-radius: 50%;
388
+ background: #999;
389
+ color: white;
390
+ width: 30px;
391
+ line-height: 30px;
392
+ text-align: center;
393
+ display: block;
394
+ margin: 0 auto;
395
+
396
+ i {
397
+ top: 2px;
398
+ }
399
+ }
400
+
401
+ .status-warning {
402
+ background: #f0ad4e;
403
+ }
404
+ .status-success {
405
+ background: #5cb85c;
406
+ }
407
+ .status-danger {
408
+ background: #d9534f;
409
+ }
410
+
411
+ .span-danger {
412
+ color: #d9534f;
413
+ font-weight: bold;
414
+ }
415
+
416
+ .table td.two-lines-column {
417
+ vertical-align: middle;
418
+ }
419
+
420
+ .table td.two-lines-number {
421
+ vertical-align: middle;
422
+ p {
423
+ margin-bottom: 5px;
424
+ }
425
+
426
+ p:last-child {
427
+ margin-bottom: 0;
428
+ }
429
+ }
430
+
431
+ .form-group.date {
432
+ label {
433
+ display: block;
434
+ }
435
+ select.form-control {
436
+ display: inline-block;
437
+ width: 32%;
438
+ box-sizing: border-box;
439
+ }
440
+ }
441
+
442
+ body .well {
443
+ border: 0;
444
+ box-shadow: none;
445
+ border-radius: 0;
446
+
447
+ h3.subtitle {
448
+ margin-top: 0;
449
+ border-color: #DDD;
450
+ }
451
+ }