proper-protoparser/style.css

55 lines
1 KiB
CSS

::-webkit-scrollbar {
display: none;
}
body {
background-image: url("resources/images/background.jpg");
background-size: cover;
background-repeat: no-repeat;
color: white;
text-shadow: black 1px 1px;
}
/* Стиль игрового окна */
#terminal {
position: absolute;
text-align: justify;
overflow: auto;
color: white;
font-size: 1em;
height: 1200px;
width: 600px;
font-family: monospace, Monaco, Courier;
padding: 10px;
max-height: 80%;
left: 0;
right: 0;
margin: auto;
}
/* Стиль строк, содержащих команду пользователя */
.userCommand {
font-weight: bold;
}
/* Стиль строк, содержащих игровой вывод */
.gameOutput {
/*...*/
}
/* Стиль строки ввода */
#inputLine::before {
content: '>';
margin-right: 0.5em;
}
#form {
display: inline-block;
}
#input {
background: transparent;
border: none;
color: white;
font-family: monospace, Monaco, Courier;
border-bottom: 1px solid white;
}