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

/* 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;
}

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