Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
justify content in library
Browse files Browse the repository at this point in the history
  • Loading branch information
Janglee123 committed Dec 19, 2018
1 parent 1594856 commit 68eeed1
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions src/css/library.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,43 @@ body{
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

#lib {
top: 50px;
bottom: 1px;
left:15px;
right: 15px;

user-select: none;
position: absolute;
background: #fff;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
overflow-y: scroll;
overflow-y: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-content: flex-start;
}

#lib a{
margin: 10px;
text-align: center;
vertical-align: middle;
margin: 25px;
width: 150px;
height: 250px;
display: inline-block;
border: 1px solid;

display: inline-grid;
text-align: center;
vertical-align: middle;

border: 1px solid rgb(175,175,175);
border-radius: 10px;
color: rgb(48, 48, 48);
font-style: normal;
text-decoration: none;
}


#lib a:hover{
background: rgb(200, 200, 200);
}
Expand Down

0 comments on commit 68eeed1

Please sign in to comment.