37 lines
770 B
SCSS
37 lines
770 B
SCSS
.problem-files {
|
|
&__cell {
|
|
margin-left: 20px;
|
|
width: 320px;
|
|
max-width: -webkit-max-content;
|
|
max-width: -moz-max-content;
|
|
max-width: max-content;
|
|
height: 180px;
|
|
display: block;
|
|
}
|
|
&__item {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
display: flex;
|
|
position: relative;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
&.bg__green {
|
|
background-color: #dff5d1;
|
|
}
|
|
&.bg__blue {
|
|
background-color: #b8ecff;
|
|
}
|
|
}
|
|
&__content {
|
|
padding: 16px;
|
|
overflow: hidden;
|
|
padding-bottom: 0;
|
|
}
|
|
&__title {
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
}
|
|
} |