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.
28 lines
434 B
28 lines
434 B
@import '../../variables.scss';
|
|
|
|
.input {
|
|
width: 100%;
|
|
background: $secondary;
|
|
color: $terminalgreen;
|
|
-webkit-appearance: none;
|
|
border: none;
|
|
border-bottom: 1px solid $terminalgreen;
|
|
padding: 5px;
|
|
outline: 0;
|
|
}
|
|
|
|
.submitContainer {
|
|
margin-top: 20px;
|
|
text-align: right;
|
|
}
|
|
|
|
.submit {
|
|
padding: 5px;
|
|
color: $terminalgreen;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: $terminalgreen;
|
|
color: $secondary;
|
|
}
|
|
}
|