HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
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;
  }
}