css progress

readme
brian 4 years ago
parent 5552015edc
commit ce1edc3da1

@ -1,11 +1,21 @@
html, body{
padding: 0px;
margin: 0px;
}
body{ body{
height: 100vh; height: 100vh;
width: 100vw; width: 100vw;
/* overflow: hidden; */
}
* {
box-sizing: border-box;
} }
.app{ .app{
height: 100%; height: 100%;
width: 100%; width: 100%;
padding: 0.4rem;
background-color: #AAAACC; background-color: #AAAACC;
display: flex; display: flex;
@ -15,7 +25,8 @@ body{
} }
.app > .top{ .app > .top{
height: 2rem; height: auto;
margin-bottom: 0.1rem;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: nowrap; flex-wrap: nowrap;
@ -23,8 +34,19 @@ body{
} }
.app > .main{ .app > .main{
}
.app > .main > .notes{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: start; justify-content: space-between;
}
.note{
width: 17rem;
border: 1px solid black;
border-radius: 1rem;
background-color: #aaccaa;
padding: 0.6rem;
} }
Loading…
Cancel
Save