1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-29 10:09:44 +02:00
planka/client/src/components/Board/Board.module.css

53 lines
828 B
CSS
Raw Normal View History

2019-08-31 04:07:25 +05:00
.addListButton {
background: hsla(0, 0%, 0%, 0.24);
2019-08-31 04:07:25 +05:00
border: none;
border-radius: 3px;
color: hsla(0, 0%, 100%, 0.72);
2019-08-31 04:07:25 +05:00
cursor: pointer;
display: block;
fill: hsla(0, 0%, 100%, 0.72);
2019-08-31 04:07:25 +05:00
font-weight: normal;
height: 42px;
padding: 11px;
text-align: left;
transition: background 85ms ease-in, opacity 40ms ease-in,
border-color 85ms ease-in;
width: 100%;
}
.addListButton:active {
outline: none;
}
.addListButton:hover {
background: hsla(0, 0%, 0%, 0.32);
2019-08-31 04:07:25 +05:00
}
.addListButtonIcon {
height: 20px;
padding: 0.64px;
width: 20px;
}
.addListButtonText {
display: inline-block;
font-size: 14px;
line-height: 20px;
vertical-align: top;
}
.list {
margin: 0 20px 0 4px;
width: 272px;
}
.lists {
display: inline-flex;
height: 100%;
min-width: 100%;
}
.wrapper {
margin: 0 20px;
2019-08-31 04:07:25 +05:00
}