/*
 * VDice style sheet. Edit at your own risk.
 *
 * Author: Virgil Sovereign
 * Plugin: VDice
 */

/* Required */

font[color$="1d1ce1"] { display:none; }
font[color$="2d1ce2"] { display:none; }

/* Style for the die value box when previewing dice in the editor. */

.vdice-preview a {
	/* .vdice-preview a { } is configurable in plugin settings under the 'Previewable Rolls' tab. */
}

/* Style 'added to' previewable dice when viewed in threads (if using the default
   PREVIEWABLE ROLL WRAPPER). */

.vdice-previewed {
	display: inline-block;
	background: url('http://s26714.prbrds.com/5216714/i/JSrTk6gFSDkvfIqcsKc8.png') top right no-repeat;
	padding-top: 20px;
	padding-right: 20px;
}

/* Style for dice rendered as boxes. */
.vdice-box {
	display: inline-block;
	border: 3px solid black;
	width: 80px;   /* default; overridden by width=X tweak if specified */
	height: 80px;  /* default; overridden by width=X tweak if specified */
	box-shadow: 2px 2px 2px gray;
	vertical-align: middle;
    text-align: center;
	position: relative;
	margin: 3px;
}

/* Style for face value of a box die. */
.vdice-value {
	padding-top: 10px;
	font: bold 48px Times New Roman,serif;
}

/* Style for the range of a box die if the showrange tweak is present. */
.vdice-range {
	position:absolute;
	bottom: 1px;
	right: 3px;
	font: bold 13px Times New Roman,serif;
}

/* Style for the dice rendered as images. */
.vdice-image {
	margin: 3px;
    vertical-align: middle;
}

/* Style for the dice placeholder if rendered as plain text. */
.vdice-text {
    display: inline-block;
    font-weight: bold;
}

/* Style for the DIV that wraps the full contents of a [][][] + O = T multi-dice block if the
   NdB+O range syntax is used. */

.vdice-sum {
    display: inline-block;
    font-size: 24px;
    vertical-align: middle;
}

/* Style for the DIV that wraps the [][][] (dice) component of a [][][] + O = T multi-dice block
   if the NdB+O range syntax is used. */

.vdice-md {
    display: inline-block;
}

/* Style for the DIV that wraps the O (offset) component of a [][][] + O = T multi-dice block if
   the NdB+O range syntax is used. */

.vdice-offset {
    display: inline-block;
    font-weight: bold;
}

/* Style for the DIV that wraps the T (total) component of a [][][] + O = T multi-dice block if
   the NdB+O range synyax is used. */

.vdice-total {
    display: inline-block;
    font-weight: bold;
    font-size: 32px;
}
