File: /var/www/javago-portal-updates/public/sass-dark/assets/components/custom-countdown.scss
// =================
// Imports
// =================
@import '../../base/base'; // Base Variables
/*
Countdown Simple
*/
#cd-simple {
display: flex;
justify-content: space-around;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
.countdown {
margin-bottom: 23px;
}
.clock-count-container {
width: 100px;
height: 100px;
border-radius: 6px;
display: flex;
justify-content: center;
flex-direction: column;
border: 1px solid $m-color_18;
}
.clock-val {
font-size: 35px;
color: $m-color_13;
margin-bottom: 0;
}
.clock-text {
color: $m-color_6;
font-size: 15px;
margin-bottom: 0;
margin-top: 16px;
}
}
/*
Countdown Circle
*/
#cd-circle {
display: flex;
justify-content: space-around;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
.countdown {
margin-bottom: 23px;
}
.clock-count-container {
width: 85px;
height: 85px;
border-radius: 50%;
display: flex;
justify-content: center;
flex-direction: column;
border: 1px solid $m-color_18;
margin: 0 0 12px 0;
}
.clock-val {
font-size: 25px;
color: $m-color_13;
margin-bottom: 0;
}
.clock-text {
color: $m-color_6;
font-size: 15px;
margin-bottom: 0;
margin-top: 16px;
}
}