MIDI_practice/html/assets/css/base.css
2023-06-17 20:32:06 +02:00

38 lines
666 B
CSS

body {
margin: 0;
background-color: #d3d3d3;
}
h1 {
margin: 0;
}
#titlebar {
font-family: 'arial';
color: white;
padding: 20px;
margin: 0px;
background-color: #333;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.container {
max-width: 1920px;
background-color: white;
padding: 1%;
margin: 10px auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
display: flex;
flex-direction: column;
}
#console {
overflow-y: scroll;
max-height: 300px;
}
#note-render {
display: inline-block;
margin: 0 auto;
}
.checkboxes {
font-family: 'arial';
margin-top: 10px;
margin-bottom: 10px;
}