/**
 * Float images found in the body text alternately right and left.
 */

/**
 * The CSS values that are wrapped in '/*variable' comments are intended for use
 * by https://www.drupal.org/project/style_settings. Enable that module to
 * have those CSS variables exposed in the settings UI.
 */

/* Adjust the id or class if your theme uses another to target the node body.*/
.content .autofloat-odd,
#content .autofloat-odd,
.style-settings-preview .autofloat-odd,
article .autofloat-odd {
  float: right; /* LTR */
  margin-top: /*variable:autofloat_top*/2px/*variable*/;
  margin-right: 0; /* LTR */
  margin-bottom: /*variable:autofloat_bottom*/2px/*variable*/;
  margin-left: /*variable:autofloat_left*/5px/*variable*/; /* LTR */
}

.content .autofloat-even,
#content .autofloat-even,
.style-settings-preview .autofloat-even,
article .autofloat-even {
  float: left; /* LTR */
  margin-top: /*variable:autofloat_top*/2px/*variable*/;
  margin-right: /*variable:autofloat_right*/5px/*variable*/; /* LTR */
  margin-bottom: /*variable:autofloat_bottom*/2px/*variable*/;
  margin-left: 0; /* LTR */
}
