2015-07-13 03:01:42 +08:00
|
|
|
@import "reset";
|
|
|
|
@import "variables";
|
|
|
|
@import "mixins";
|
|
|
|
@import "html";
|
|
|
|
@import "text";
|
|
|
|
@import "grid";
|
|
|
|
@import "blocks";
|
|
|
|
@import "buttons";
|
|
|
|
@import "forms";
|
2015-08-09 03:05:30 +08:00
|
|
|
@import "tables";
|
2015-08-16 07:18:22 +08:00
|
|
|
@import "animations";
|
2015-07-16 05:55:49 +08:00
|
|
|
@import "tinymce";
|
2015-08-09 21:52:15 +08:00
|
|
|
@import "image-manager";
|
2015-09-03 23:51:10 +08:00
|
|
|
@import "header";
|
|
|
|
@import "lists";
|
|
|
|
@import "pages";
|
2015-07-22 03:13:29 +08:00
|
|
|
|
2015-10-09 06:49:18 +08:00
|
|
|
[v-cloak] {display: none;}
|
|
|
|
|
2015-07-22 03:13:29 +08:00
|
|
|
// Jquery Sortable Styles
|
|
|
|
.dragged {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0.5;
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
body.dragging, body.dragging * {
|
|
|
|
cursor: move !important;
|
|
|
|
}
|
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
// User Avatar Images
|
2015-08-23 20:41:35 +08:00
|
|
|
.avatar {
|
|
|
|
border-radius: 100%;
|
2015-10-18 23:06:06 +08:00
|
|
|
background-color: #EEE;
|
|
|
|
&.med {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
2015-08-29 23:00:19 +08:00
|
|
|
}
|
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
// System wide notifications
|
2015-08-29 23:00:19 +08: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 23:51:10 +08:00
|
|
|
z-index: 999999;
|
2015-08-29 23:00:19 +08: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 22:31:16 +08:00
|
|
|
}
|
|
|
|
|
2015-09-04 02:05:45 +08: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 23:51:10 +08:00
|
|
|
// Search results
|
2015-09-01 22:35:11 +08:00
|
|
|
.search-results > h3 a {
|
|
|
|
font-size: 0.66em;
|
|
|
|
color: $primary;
|
|
|
|
padding-left: $-m;
|
|
|
|
i {
|
|
|
|
padding-right: $-s;
|
|
|
|
}
|
2015-08-06 03:59:39 +08:00
|
|
|
}
|