158 lines
3.6 KiB
CSS
158 lines
3.6 KiB
CSS
/************************* Start Select Workshop from Employee *************************/
|
|
.wp-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
padding: 0;
|
|
}
|
|
|
|
.wp-card {
|
|
overflow: hidden;
|
|
color: #1F1F1F;
|
|
border: 1px solid #eee;
|
|
cursor: pointer;
|
|
transition: all .3s ease
|
|
}
|
|
|
|
.wp-card:hover {
|
|
border: 1px solid #097575;
|
|
background-color: #ECFFFF;
|
|
}
|
|
|
|
.wp-card .wp-content .wp-workshop-name {
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.wp-card .wp-content span {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wp-card .wp-card-chose {
|
|
display: block;
|
|
width: 100%;
|
|
background: linear-gradient(180deg, #2FC1C1 0%, #109292 100%);
|
|
padding: 4px;
|
|
color: #fff;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.wp-card .wp-content img {
|
|
width: 100px;
|
|
text-align: center;
|
|
height: 100px;
|
|
background: #eee;
|
|
color: #adadad;
|
|
font-weight: 800;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 40px;
|
|
}
|
|
/************************* End Select Workshop from Employee *************************/
|
|
|
|
/************************* Start Simple Gozareshgir Card *************************/
|
|
.g-card {
|
|
background: #FFFFFF;
|
|
border: 0.5px solid #29B5B5;
|
|
border-radius: 10px;
|
|
transition: all .3s ease;
|
|
}
|
|
|
|
.g-card .click:hover {
|
|
background: #eef9f9;
|
|
}
|
|
/************************* End Simple Gozareshgir Card *************************/
|
|
|
|
/************************* Start With Border Gozareshgir Card *************************/
|
|
.gwb-card {
|
|
position: relative;
|
|
background: #FFFFFF;
|
|
outline: 0.5px solid #29B5B5;
|
|
margin: 0 0 7px 0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.gwb-card::before {
|
|
content: "";
|
|
width: 100%;
|
|
height: 20px;
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: -6px;
|
|
background: #26AFAF;
|
|
border-radius: 0 0 10px 10px;
|
|
outline: 0.5px solid #29B5B5;
|
|
}
|
|
|
|
.gwb-card .click {
|
|
color: #000;
|
|
height: 74px;
|
|
cursor: pointer;
|
|
z-index: 4;
|
|
position: relative;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
padding: 5px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: all .3s ease;
|
|
}
|
|
|
|
.gwb-card .click:hover {
|
|
background: #eef9f9;
|
|
}
|
|
/************************* End With Border Gozareshgir Card *************************/
|
|
|
|
.card-area-workshop {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.card-area-employees {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.card-area-report {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.card-area-rollcall {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
/************************* Start Responsive *************************/
|
|
|
|
@media (max-width: 1442px) {
|
|
.card-area-workshop {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1366px) {
|
|
.card-area-workshop {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.card-area-employees {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.card-area-workshop {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.card-area-employees {
|
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
}
|
|
|
|
.card-area-report {
|
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
/************************* End Responsive *************************/ |