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.
59 lines
982 B
59 lines
982 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 var(--primaryText);
|
|
padding: 5px 10px;
|
|
|
|
section {
|
|
display: inline-block;
|
|
color: var(--primaryText);
|
|
margin: 0;
|
|
|
|
&:nth-child(1) {
|
|
text-align: center;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.word {
|
|
margin: 0 3px;
|
|
background-color: inherit;
|
|
outline: 0;
|
|
border: none;
|
|
padding: 8px 10px 6px 10px;
|
|
color: var(--primaryText);
|
|
font-family: 'Courier', courier, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
|
|
&.valid {
|
|
color: var(--superGreen);
|
|
}
|
|
|
|
&.invalid {
|
|
color: var(--superRed);
|
|
}
|
|
}
|
|
|
|
.word::-webkit-input-placeholder {
|
|
text-shadow: none;
|
|
-webkit-text-fill-color: initial;
|
|
}
|
|
|
|
.contentEditable {
|
|
width: 100px;
|
|
background: red;
|
|
}
|
|
|