109 lines
1.9 KiB
SCSS
109 lines
1.9 KiB
SCSS
// Elements
|
|
|
|
// Blockquotes
|
|
blockquote,
|
|
blockquote p {
|
|
color: $gray46-47;
|
|
font-style: italic;
|
|
line-height: 24px;
|
|
}
|
|
blockquote {
|
|
border-left: 1px solid $gray87-88;
|
|
margin: 0 0 20px;
|
|
padding: 9px 20px 0 19px;
|
|
cite {
|
|
@extend %small;
|
|
color: $gray;
|
|
display: block;
|
|
&:before {
|
|
content: '\2014 \0020';
|
|
}
|
|
}
|
|
}
|
|
|
|
// __Lists__
|
|
|
|
ul,
|
|
ol {
|
|
margin-bottom: 20px;
|
|
}
|
|
ul { list-style: none outside; }
|
|
ol { list-style: decimal; }
|
|
|
|
sup {
|
|
@extend %small;
|
|
vertical-align: super;
|
|
}
|
|
|
|
.icon {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.not-clickable {
|
|
cursor: default;
|
|
}
|
|
|
|
.draggable {
|
|
cursor: move;
|
|
}
|
|
|
|
//Datepicker
|
|
.pika-single {
|
|
// scss-lint:disable ImportantRule
|
|
z-index: 999999;
|
|
.pika-title {
|
|
color: $grayer;
|
|
}
|
|
.is-selected {
|
|
.pika-button {
|
|
background: $green-taiga;
|
|
border-radius: 0 !important;
|
|
box-shadow: inset 0 1px 3px $green-taiga;
|
|
}
|
|
}
|
|
.is-today {
|
|
.pika-button {
|
|
color: $green-taiga;
|
|
}
|
|
&.is-selected {
|
|
button {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
.pika-button {
|
|
&:hover {
|
|
background: $fresh-taiga !important; //Important added because plugin has it :S
|
|
border-radius: 0 !important; //Important added because plugin has it :S
|
|
box-shadow: inset 0 1px 3px $fresh-taiga !important; //Important added because plugin has it :S
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//Empty
|
|
.empty {
|
|
border: 1px dashed $gray-light;
|
|
color: $gray-light;
|
|
min-height: 10rem;
|
|
padding: 5% 0;
|
|
text-align: center;
|
|
.icon {
|
|
@extend %xxlarge;
|
|
margin-bottom: 2rem;
|
|
}
|
|
span {
|
|
display: block;
|
|
&.title {
|
|
@extend %xlarge;
|
|
@extend %title;
|
|
margin-bottom: 1rem;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
}
|