MIDI_practice/html/assets/css/base.css

38 lines
666 B
CSS
Raw Normal View History

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;
2023-06-04 23:32:08 +02:00
padding: 1%;
margin: 10px auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
2023-06-04 23:32:08 +02:00
display: flex;
flex-direction: column;
}
2023-06-17 20:32:06 +02:00
#console {
overflow-y: scroll;
max-height: 300px;
}
2023-06-04 23:32:08 +02:00
#note-render {
display: inline-block;
margin: 0 auto;
2023-06-05 20:09:37 +02:00
}
.checkboxes {
font-family: 'arial';
margin-top: 10px;
margin-bottom: 10px;
}