Skip to content

Instantly share code, notes, and snippets.

@nemrosim
Last active October 8, 2020 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nemrosim/9b320acfa2511b6b5a2a05ed8dc39e95 to your computer and use it in GitHub Desktop.
Save nemrosim/9b320acfa2511b6b5a2a05ed8dc39e95 to your computer and use it in GitHub Desktop.
@font-face {
font-family: 'DavidLibre';
src: local('DavidLibre'), url(../fonts/DavidLibre-Regular.ttf) format('truetype');
}
p {
font-family: DavidLibre, serif;
font-weight: bold;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-around;
}
.column {
height: max-content;
min-height: 100px;
width: 160px;
margin: 10px;
border-radius: 10px;
box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
border: 2px solid #7d7d7d; /* Параметры границы */
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.do-it-column {
background-color: #fff0f0;
}
.in-progress-column {
background-color: #fef2e7;
}
.awaiting-review-column {
background-color: #fffada;
}
.done-column {
background-color: #f5ffe5;
}
.movable-item {
border-radius: 5px;
background-color: #fafdff;
height: 100px;
width: 140px;
margin: 10px auto;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment