textadventure/style.css

80 lines
1.4 KiB
CSS
Raw Normal View History

2021-07-09 19:56:23 +00:00
body {
text-align: center;
2021-07-10 02:59:41 +00:00
background-color: black;
font-family: "Courier New", monospace;
}
2021-07-10 03:47:57 +00:00
p {
padding-left: 1%;
}
#fakebuttons {
2021-07-10 02:59:41 +00:00
margin: auto;
2021-07-10 03:47:57 +00:00
padding-top: 1%;
2021-07-10 02:59:41 +00:00
text-align: right;
float: right;
2021-07-10 03:47:57 +00:00
padding-right: 2%;
2021-07-10 02:59:41 +00:00
}
2021-07-10 03:47:57 +00:00
#terminal {
display:inline-block;
font-weight: bolder;
2021-07-09 19:56:23 +00:00
}
2021-07-10 02:59:41 +00:00
#infobox {
text-align: center;
background: rgb(60, 60, 60);
color:white;
width: 50%;
height: 10%;
margin-left: 25%;
margin-top: 5%;
}
#roundedtop {
border-top: solid;
border-radius: 10px 10px 0px 0px;
border-color: rgb(60, 60, 60);
2021-07-10 03:47:57 +00:00
border-bottom: solid;
border-bottom-color: darkgray;
border-width: 1px;
2021-07-10 02:59:41 +00:00
height: 5%;
width: 50%;
margin-top: 5%;
margin-left: 25%;
background-color: rgb(60, 60, 60);
position: relative;
color:white;
font-weight: bolder;
word-spacing: 10px;
2021-07-10 03:47:57 +00:00
text-align: center;
2021-07-09 19:56:23 +00:00
}
#userText {
margin-left: 25%;
justify-content: center;
2021-07-10 02:59:41 +00:00
background-color: rgb(60, 60, 60);
color: white;
2021-07-09 19:56:23 +00:00
text-align: left;
2021-07-10 02:59:41 +00:00
height: 45%;
2021-07-09 19:56:23 +00:00
width: 50%;
overflow-y: scroll;
}
#userInput {
width: 50%;
padding: 10px;
border:none;
2021-07-10 02:59:41 +00:00
background-image: url('./greaterthans.png');
background-position: 10px 10px;
background-repeat: no-repeat;
background: rgb(60, 60, 60);
color: white;
2021-07-10 03:47:57 +00:00
border-top: solid;
border-color: darkgray;
border-width: 1px;
2021-07-09 19:56:23 +00:00
}
2021-07-10 02:59:41 +00:00
#userInput:focus {
outline: none;
2021-07-09 19:56:23 +00:00
}