7.1
15832144755
2021-07-01 ba21fcf8482029f7634b62d60daf171538001769
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
//  =================
//      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;
  }
}