/*
 * Custom styles for the SeeddeeS WYSIWYG editor. These classes control
 * the size and alignment of media elements inserted into contenteditable
 * areas. They are applied via the WYSIWYG toolbar buttons in the admin.
 */

/* Size modifiers */
.wysiwyg-media-small {
    max-width: 200px;
    height: auto;
}

.wysiwyg-media-medium {
    max-width: 400px;
    height: auto;
}

.wysiwyg-media-large {
    max-width: 100%;
    height: auto;
}

/* Alignment modifiers */
.wysiwyg-align-left {
    float: left;
    margin: 0 1em 1em 0;
}

.wysiwyg-align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wysiwyg-align-right {
    float: right;
    margin: 0 0 1em 1em;
}

/* Video default styling */
.wysiwyg-video {
    max-width: 100%;
    height: auto;
    display: block;
}