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.
 
 
 

61 lines
947 B

@import '../../styles/variables.scss';
.seedContainer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-size: 12px;
margin-top: 10%;
li {
display: inline-block;
margin: 10px;
width: 25%;
border: 0.2px solid #ccc;
padding: 5px 10px;
section {
display: inline-block;
vertical-align: middle;
color: $white;
&:nth-child(1) {
text-align: center;
opacity: 0.5;
}
&:nth-child(2) {
margin: 0 5px;
}
}
}
}
.word {
margin: 0 3px;
background-color: inherit;
outline: 0;
border: none;
padding: 5px 10px;
color: $white;
font-family: 'Courier', courier, sans-serif;
&.valid {
color: $green;
}
&.invalid {
color: $red;
}
}
.word::-webkit-input-placeholder {
text-shadow: none;
-webkit-text-fill-color: initial;
}
.contentEditable {
width: 100px;
background: red;
}