EmulatorJS/src/css/main.css

60 lines
1.3 KiB
CSS
Raw Normal View History

.ejs_parent {
--ejs-primary-color: 26,175,255;
position: relative;
font-family: Avenir,"Avenir Next","Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.ejs_game {/* todo. User selectable background loading image */
width: 100%;
height: 100%;
background-color: rgb(51, 51, 51);
cursor: default;
}
.ejs_start_button {
position: absolute;
bottom: 65px;
left: 50%;
transform: translateX(-50%);
cursor: pointer;
box-sizing: inherit;
display: flex;
justify-content: center;
text-shadow: 0 1px 1px rgba(0,0,0,0.5);
font-size: 20px;
line-height: 45px;
text-transform: uppercase;
font-weight: bolder;
position: relative;
text-decoration: none;
width: 200px;
height: 45px;
border: 0;
color: #fff !important;
border-radius: 35px;
text-align: center;
background-color: rgba(var(--ejs-primary-color),1);
}
.ejs_loading_text {
position: absolute;
bottom: 20px;
font-weight: 500;
left: 50%;
transform: translateX(-50%);
box-sizing: inherit;
font-size: 12px;
color: #bcbcbc;
}
.ejs_canvas {
width: 100%;
height: 100%;
}