Buzzer/src/main/resources/css/player.css

60 lines
1.1 KiB
CSS

body, html {
height: 100%;
overflow: hidden;
font-size: 4vh;
box-sizing: border-box;
padding: 5px;
margin: 0;
background-color: #1E1A4A;
color: lightgray;
}
div.parent {
display: grid;
grid-template-rows: auto 1fr;
height: 100%;
max-width: 100%;
}
div.input {
border-radius: 50px;
max-width: 100%;
margin-bottom: 3%;
display: grid;
grid-template-columns: auto 50px 1fr;
background-color: #411C52;
padding-left: 20px;
}
div.input > label {
border-bottom-left-radius: 50px;
border-top-left-radius: 50px;
}
div.input > input {
max-width: 100%;
width: 100%;
font-size: 4vh;
border-bottom-right-radius: 50px;
border-top-right-radius: 50px;
background-color: #551D57;
}
div > .submit {
border-radius: 50px;
width: 100%;
max-width: 100%;
font-size: 4vh;
height: 100%;
border: solid 1px #5B1D4A;
background-color: #411C52;
color: lightgray;
display: flex;
align-items: center;
justify-content: center;
}
div > .button:hover {
background-color: #5B1D4A;
}