currentQuestion/css/style.css
Felix Keller 18949f07f2
Added default font size for better legibility and appended README.
Be sure to reread the README since modification in OBS is necessary.
2024-10-02 22:27:20 +02:00

27 lines
463 B
CSS

body {
max-height: 90%;
overflow: clip;
}
#questionBox {
position: absolute;
min-height: 30pt;
left: 2.15%;
bottom: 5px;
width: 95%;
border-style: solid;
border-width: 3pt;
border-color: transparent;
border-radius: 25px;
max-height: 98%;
overflow: hidden;
}
#questionParagraph {
margin: 0;
padding: 10px;
font-family: sans;
font-size: 23pt;
color: white;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}