mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-10 00:46:15 +01:00
71 lines
1.2 KiB
SCSS
71 lines
1.2 KiB
SCSS
|
.supporting-documents-validation {
|
||
|
section {
|
||
|
background-color: #f4f3f3;
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 6px;
|
||
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
|
margin: 30px;
|
||
|
min-height: 1px;
|
||
|
padding-left: 15px;
|
||
|
padding-right: 15px;
|
||
|
position: relative;
|
||
|
display: block;
|
||
|
border-spacing: 0;
|
||
|
}
|
||
|
|
||
|
.info-area {
|
||
|
color: #000;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
.document-type {
|
||
|
margin-bottom: 15px;
|
||
|
|
||
|
.type-name {
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
.filename {
|
||
|
margin-right: 15px;
|
||
|
}
|
||
|
|
||
|
.missing-file {
|
||
|
color: var(--error);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.refuse-btn {
|
||
|
background-color: var(--secondary);
|
||
|
border-color: var(--secondary);
|
||
|
color: var(--secondary-text-color);
|
||
|
margin-bottom: 15px;
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 1200px) {
|
||
|
.supporting-documents-validation section {
|
||
|
width: 58.3333333333%;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
.supporting-documents-validation section.refusal {
|
||
|
width: 33.33333333333333%;
|
||
|
float: left;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 992px) {
|
||
|
.supporting-documents-validation section {
|
||
|
width: 100%;
|
||
|
float: left;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 768px) {
|
||
|
.supporting-documents-validation section {
|
||
|
width: 100%;
|
||
|
float: left;
|
||
|
}
|
||
|
}
|