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.

90 lines
1.4 KiB

// this css is kinda jank
@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;
}
main {
display: flex;
flex: 1;
height: 100%;
flex-direction: column;
padding: 5px;
}
.bar {
display: flex;
flex-wrap: wrap;
padding: 2.5px 5px 2.5px 5px;
button {
background-color: #313338;
border: 1px solid #dbdee1;
border-radius: 2.5px;
color: #dbdee1;
&:active {
border-color: #87929b;
}
}
h5 {
margin: 0;
padding: 0;
margin-left: 10px;
margin-right: 5px;
color: #dbdee1;
}
input {
background-color: #313338;
border: 1px solid #dbdee1;
border-radius: 2.5px;
color: #dbdee1;
&:active {
border-color: #87929b;
}
}
select {
background-color: #313338;
border: 1px solid #dbdee1;
border-radius: 2.5px;
color: #dbdee1;
&:active {
border-color: #87929b;
}
}
}
.io {
display: flex;
flex: 1;
@media (max-width: 500px) {
flex-direction: column;
}
textarea {
display: flex;
flex: 1;
margin: 5px;
border-radius: 2.5px;
resize: none;
background-color: #313338;
border-color: #dbdee1;
color: #dbdee1;
}
}