Add upstream plugins

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-10-25 22:42:20 +02:00
parent 5d3c2ec184
commit 290736650a
1186 changed files with 302577 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
// Media objects
// Source: http://stubbornella.ai1ec-org/content/?p=497
// --------------------------------------------------
// Common styles
// -------------------------
// Clear the floats
.ai1ec-media,
.ai1ec-media-body {
overflow: hidden;
zoom: 1;
}
// Proper spacing between instances of .ai1ec-media
.ai1ec-media,
.ai1ec-media .ai1ec-media {
margin-top: 15px;
}
.ai1ec-media:first-child {
margin-top: 0;
}
// For images and videos, set to block
.ai1ec-media-object {
display: block;
}
// Reset margins on headings for tighter default spacing
.ai1ec-media-heading {
margin: 0 0 5px;
}
// Media image alignment
// -------------------------
.ai1ec-media {
> .ai1ec-pull-left {
margin-right: 10px;
}
> .ai1ec-pull-right {
margin-left: 10px;
}
}
// Media list variation
// -------------------------
// Undo default ul/ol styles
.ai1ec-media-list {
padding-left: 0;
list-style: none;
}