2015-07-12 15:01:42 -04:00
|
|
|
@import "reset";
|
|
|
|
@import "variables";
|
|
|
|
@import "mixins";
|
|
|
|
@import "html";
|
|
|
|
@import "text";
|
|
|
|
@import "grid";
|
|
|
|
@import "blocks";
|
|
|
|
@import "buttons";
|
|
|
|
@import "forms";
|
2015-08-08 15:05:30 -04:00
|
|
|
@import "tables";
|
2015-08-15 19:18:22 -04:00
|
|
|
@import "animations";
|
2015-07-15 17:55:49 -04:00
|
|
|
@import "tinymce";
|
2015-08-09 09:52:15 -04:00
|
|
|
@import "image-manager";
|
2015-09-03 11:51:10 -04:00
|
|
|
@import "header";
|
|
|
|
@import "lists";
|
|
|
|
@import "pages";
|
2015-07-21 15:13:29 -04:00
|
|
|
|
2015-10-08 18:49:18 -04:00
|
|
|
[v-cloak] {display: none;}
|
|
|
|
|
2015-07-21 15:13:29 -04:00
|
|
|
// Jquery Sortable Styles
|
|
|
|
.dragged {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0.5;
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
body.dragging, body.dragging * {
|
|
|
|
cursor: move !important;
|
|
|
|
}
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
// User Avatar Images
|
2015-08-23 08:41:35 -04:00
|
|
|
.avatar {
|
|
|
|
border-radius: 100%;
|
2015-10-18 11:06:06 -04:00
|
|
|
background-color: #EEE;
|
|
|
|
&.med {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
2015-08-29 11:00:19 -04:00
|
|
|
}
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
// System wide notifications
|
2015-08-29 11:00:19 -04:00
|
|
|
.notification {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: $-xl*2 $-xl;
|
|
|
|
padding: $-l $-xl;
|
|
|
|
background-color: #EEE;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: $bs-med;
|
2015-09-03 11:51:10 -04:00
|
|
|
z-index: 999999;
|
2015-08-29 11:00:19 -04:00
|
|
|
display: table;
|
|
|
|
cursor: pointer;
|
|
|
|
max-width: 480px;
|
|
|
|
i, span {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
i {
|
|
|
|
font-size: 2em;
|
|
|
|
padding-right: $-l;
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
&.pos {
|
|
|
|
background-color: $positive;
|
|
|
|
color: #EEE;
|
|
|
|
}
|
|
|
|
&.neg {
|
|
|
|
background-color: $negative;
|
|
|
|
color: #EEE;
|
|
|
|
}
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
|
|
|
|
2015-09-03 14:05:45 -04:00
|
|
|
// Loading icon
|
|
|
|
$loadingSize: 10px;
|
|
|
|
.loading-container {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
height: $loadingSize;
|
|
|
|
margin: $-xl auto;
|
|
|
|
> div {
|
|
|
|
width: $loadingSize;
|
|
|
|
height: $loadingSize;
|
|
|
|
border-radius: $loadingSize;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
animation-name: loadingBob;
|
|
|
|
animation-duration: 1.4s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: cubic-bezier(.62, .28, .23, .99);
|
|
|
|
margin-right: 4px;
|
|
|
|
background-color: $color-page;
|
|
|
|
animation-delay: 0.3s;
|
|
|
|
}
|
|
|
|
> div:first-child {
|
|
|
|
left: -($loadingSize+$-xs);
|
|
|
|
background-color: $color-book;
|
|
|
|
animation-delay: 0s;
|
|
|
|
}
|
|
|
|
> div:last-child {
|
|
|
|
left: $loadingSize+$-xs;
|
|
|
|
background-color: $color-chapter;
|
|
|
|
animation-delay: 0.6s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
// Search results
|
2015-09-01 10:35:11 -04:00
|
|
|
.search-results > h3 a {
|
|
|
|
font-size: 0.66em;
|
|
|
|
color: $primary;
|
|
|
|
padding-left: $-m;
|
|
|
|
i {
|
|
|
|
padding-right: $-s;
|
|
|
|
}
|
2015-08-05 15:59:39 -04:00
|
|
|
}
|