- added current time

- added start and end date
- removed additional sections
- fixed X button
- renamed + and - buttons
- some renaming
This commit is contained in:
Metaforce 2025-02-03 17:21:26 +05:00
parent b120143726
commit 981ef867fb
7 changed files with 97 additions and 49 deletions

View file

@ -5,6 +5,12 @@ body, html {
font-family: 'Montserrat', serif;
}
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.content {
padding: 32px;
display: flex;
@ -30,34 +36,4 @@ body, html {
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.notes_container {
display: flex;
flex-direction: column;
gap: 10px;
background-color: #FFFFFF;
border-radius: 32px;
padding: 32px;
height: 400px;
}
.notes_container textarea {
height: 100%;
border: 1px dashed #000;
resize: none;
font-size: 40px;
}
footer {
display: flex;
background-color: #FFF;
border-radius: 32px;
flex-direction: column;
padding: 32px;
color: #000;
}
footer a {
font-size: 24px;
}