sonify
Version:
A module to sonify data
50 lines (41 loc) • 685 B
CSS
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
* {
color: rgb(214, 222, 235);
}
body {
padding: 0;
margin: 0;
max-height: 100vh;
overflow: hidden;
background-color: #011627;
}
#__next {
height: 100%;
}
textarea {
outline: none;
}
button {
color: white;
font-family: "Roboto", sans-serif;
}
h1 {
color: rgb(214, 222, 235);
font-family: "Roboto", sans-serif;
font-size: 42px;
}
button {
padding: 8px;
background: #011627;
color: #d6deeb;
font-size: 16px;
outline: none;
cursor: pointer;
border-radius: 4px;
border: 1px solid #02335e;
margin: 24px;
height: 100%;
}
button:hover {
background: #012646;
}