thedesk/app/css/sort.css

41 lines
714 B
CSS
Raw Normal View History

2018-02-05 01:56:31 +11:00
.drag-content{
width:300px;
max-width:100%;
2018-07-28 07:25:12 +10:00
height:300px;
2018-02-05 01:56:31 +11:00
text-overflow: ellipsis;
cursor:move;
user-select: none;
2018-07-28 07:25:12 +10:00
background-color:var(--modalfooter);
2018-02-05 01:56:31 +11:00
margin:5px;
border-radius:5px;
2018-07-28 07:25:12 +10:00
color:var(--color);
2018-02-05 01:56:31 +11:00
padding:3px;
2018-07-28 07:25:12 +10:00
font-family:Open Sans;
font-size:20px;
flex-grow:1;
text-align: center;
padding:10px;
}
#sort{
display:flex;
flex-direction:row;
overflow-x:scroll;
display: flex;
width:100vw;
}
#sort-box{
position:absolute;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width:100vw;
height:calc(100vh - 40px);
background-color: rgba(0, 0, 0, 0.8);
z-index:10002;
}
#sort-box button{
background-color: var(--notfbox);
color:var(--color);
2018-02-05 01:56:31 +11:00
}