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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

93 lines
1.4 KiB

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap");
* {
font-family: "IBM Plex Sans";
}
body {
margin: 0;
height: calc(100vh - 10px);
background-color: #232428;
}
.root {
display: flex;
flex: 1;
height: 100vh;
flex-direction: column;
}
.bar {
display: flex;
flex-wrap: wrap;
padding: 5px 5px 1px 5px;
// probably should make these be a class but i have no idea what to name it so
button {
background-color: #313338;
border: 1px solid #767676;
color: #dbdee1;
outline: none;
&:active {
border-color: #dbdee1;
}
}
select {
background-color: #313338;
border: 1px solid #767676;
color: #dbdee1;
outline: none;
&:active {
border-color: #dbdee1;
}
}
input {
background-color: #313338;
border: 1px solid #767676;
color: #dbdee1;
outline: none;
&:active {
border-color: #dbdee1;
}
}
label {
margin: 0;
padding: 0;
margin-left: 10px;
margin-right: 5px;
color: #dbdee1;
}
}
.io {
display: flex;
flex: 1;
textarea {
display: flex;
flex: 1;
margin: 5px;
resize: none;
background-color: #313338;
color: #dbdee1;
border-color: #767676;
outline: none;
&:focus {
border-color: #dbdee1;
}
}
@media (max-width: 500px) {
flex-direction: column;
}
}