questable-web-ui/src/scss/index.scss

82 lines
1.0 KiB
SCSS

body {
margin: 0;
padding: 0;
background-color: #303030;
color: #FFF;
font-family: "Press Start 2P";
}
.login {
padding: 15%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
box-sizing: border-box;
.wrapper {
width: 100%;
input {
margin-bottom: 1em;
width: 100%;
display: block;
}
button {
width: 100%;
display: block;
}
}
}
.main {
header {
width: 100%;
padding: 1em 3em;
display: flex;
justify-content: space-between;
}
.body {
padding: 1em;
div {
margin: 1em 0;
box-sizing: border-box;
button {
width: 48%;
margin: 0 1%;
box-sizing: border-box;
}
}
}
}
.nes-list.is-circle li::before {
color: #FFF;
}
.loader {
width: 100%;
display: flex;
justify-content: center;
align-content: center;
}
.full_screen {
height: 100vh;
}
@media (max-width: 600px) {
.main {
header {
padding: 1em 1em;
}
.body {
div {
button {
width: 98%;
margin: 0.25em 1%;
}
}
}
}
}