Implemented note display

This commit is contained in:
krippix 2023-06-04 23:32:08 +02:00
parent 4fb4a58a1d
commit f46710ef6c
4 changed files with 112 additions and 6 deletions

View file

@ -5,10 +5,6 @@ body {
h1 {
margin: 0;
}
img {
height: auto;
width: 100%;
}
#titlebar {
font-family: 'arial';
color: white;
@ -20,7 +16,13 @@ img {
.container {
max-width: 1920px;
background-color: white;
display: flex;
padding: 1%;
margin: 10px auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
display: flex;
flex-direction: column;
}
#note-render {
display: inline-block;
margin: 0 auto;
}