You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pastebin/index.css

52 lines
760 B
CSS

html, body{
padding: 0px;
margin: 0px;
}
body{
height: 100vh;
width: 100vw;
/* overflow: hidden; */
}
* {
box-sizing: border-box;
}
.app{
height: 100%;
width: 100%;
padding: 0.4rem;
background-color: #AAAACC;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
}
.app > .top{
height: auto;
margin-bottom: 0.1rem;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
.app > .main{
}
.app > .main > .notes{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.note{
width: 17rem;
border: 1px solid black;
border-radius: 1rem;
background-color: #aaccaa;
padding: 0.6rem;
}