Template:Script/styles.css: Difference between revisions

From Love and Deepspace Wiki
Content added Content deleted
(Created page with ".script-container { font-family: serif; font-size: 17px; max-width: 525px; } .script-location { font-weight: bold; } .script-action { font-style: italic; } .script-speaker { font-weight: bold; }")
 
mNo edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
.script-container {
.script-container {
display: grid;
font-family: serif;
font-size: 17px;
grid-gap: 0.5em;
max-width: 525px;
max-width: 555px;
border: 1px solid #ddd;
background: #eee;
padding: 1em;
}

.script-title {
text-align: center;
font-size: 1.2em;
font-style: italic;
font-weight: bold;
margin-bottom: 0.5em;
}
}


.script-location {
.script-location {
font-weight: bold;
font-weight: bold;
text-transform: uppercase;
}
}


Line 15: Line 27:
.script-speaker {
.script-speaker {
font-weight: bold;
font-weight: bold;
}

.script-choice-container {
background: #ddd;
padding: 0.25em 0.75em;
}

.script-line,
.script-choice {
margin: 0.5em 0;
}

.script-choice-dialogue {
margin-left: 1em;
}
}

Latest revision as of 05:41, 18 February 2024

.script-container {
	display: grid;
	grid-gap: 0.5em;
	max-width: 555px;
	border: 1px solid #ddd;
    background: #eee;
    padding: 1em;
}

.script-title {
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.script-location {
	font-weight: bold;
	text-transform: uppercase;
}

.script-action {
	font-style: italic;
}

.script-speaker {
	font-weight: bold;
}

.script-choice-container {
	background: #ddd;
	padding: 0.25em 0.75em;
}

.script-line,
.script-choice {
	margin: 0.5em 0;
}

.script-choice-dialogue {
	margin-left: 1em;
}