morse-game/morse-code_files/styles.css
2022-02-28 13:16:41 -08:00

60 lines
967 B
CSS

.game-container {
padding: 10px;
border-radius: 36px;
box-shadow: 0px 11px 20px 4px #aaa;
}
#wordInput {
text-align: center;
}
.start-button {
width: 100px;
height: 40px;
border-radius: 10px;
margin: 10px;
font-size: 20px;
}
.interaction-button {
width: 100px;
height: 100px;
border-radius: 100%;
margin: 10px;
font-size: 20px;
}
.game-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.input {
font-size: 20px;
}
.display-message {
font-size: 20px;
text-align: center;
min-height: 1.7em;
}
.morse-input {
white-space: pre-wrap;
border-bottom: 1px solid #aaa;
border-radius: 4px;
min-height: calc(1.7em + 1px);
}
.button-container {
display: flex;
width: 100%;
justify-content: space-evenly;
}
#speed-table {
max-width: 100%;
overflow: scroll;
}