windows95/src/renderer/style/style.css

100 lines
1.3 KiB
CSS
Raw Normal View History

2018-08-23 04:51:31 +02:00
html, body {
margin: 0;
padding: 0;
2018-08-24 00:33:29 +02:00
}
body {
2018-08-23 04:51:31 +02:00
background: #000;
2018-08-24 00:33:29 +02:00
}
body.paused > #emulator {
display: none;
}
body.paused {
background: #008080;
font-family: Courier;
}
2018-08-25 08:01:33 +02:00
#buttons {
user-select: none;
}
#status {
user-select: none;
position: absolute;
z-index: 100;
left: calc(50vw - 110px);
background: white;
text-align: center;
font-family: Courier;
font-size: 10px;
padding-bottom: 3px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
overflow: hidden;
padding-left: 10px;
padding-right: 10px;
max-height: 18px;
}
2018-08-24 00:33:29 +02:00
#floppy-path {
background: beige;
padding: 5px;
}
#information {
text-align: center;
position: absolute;
width: 100vw;
bottom: 50px;
font-size: 18px;
2018-08-23 04:51:31 +02:00
}
#emulator {
display: flex
}
#emulator canvas {
margin: auto;
}
2018-08-24 00:33:29 +02:00
#file-input {
2018-08-23 04:51:31 +02:00
display: none;
}
2018-08-23 07:03:28 +02:00
#other-buttons {
position: absolute;
width: 100vw;
height: 100px;
display: flex;
align-items: flex-end;
bottom: 0;
justify-content: center;
}
2018-08-23 04:51:31 +02:00
#start-buttons {
position: absolute;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
2018-08-23 07:03:28 +02:00
.btn {
font-family: Courier;
2018-08-23 04:51:31 +02:00
cursor: pointer;
background: #ffd2fd;
margin: 10px;
padding: 5px;
2018-08-23 07:03:28 +02:00
text-align: center;
2018-08-23 04:51:31 +02:00
}
2018-08-23 07:03:28 +02:00
.btn:hover {
2018-08-23 04:51:31 +02:00
cursor: pointer;
background: #ff95fa;
margin: 10px;
padding: 5px;
2018-08-23 07:03:28 +02:00
}