You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
632 B
39 lines
632 B
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-color: darksalmon;
|
|
font-family: 'Roboto', sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
}
|
|
|
|
div {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
input {
|
|
width: 50px;
|
|
padding: 5px;
|
|
font-size: 18px;
|
|
background-color: darksalmon;
|
|
border: none;
|
|
text-align: center;
|
|
}
|
|
|
|
input:focus {
|
|
outline: none;
|
|
}
|