yzt
2023-05-26 de4278af2fd46705a40bac58ec01122db6b7f3d7
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
/*
    ===============================
            @Import Function
    ===============================
*/
/*
    ===============================
            @Import Mixins
    ===============================
*/
/*
    Countdown Simple
*/
#cd-simple {
  display: flex;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  #cd-simple .countdown {
    margin-bottom: 23px; }
  #cd-simple .clock-count-container {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #191e3a; }
  #cd-simple .clock-val {
    font-size: 35px;
    color: #25d5e4;
    margin-bottom: 0; }
  #cd-simple .clock-text {
    color: #888ea8;
    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; }
  #cd-circle .countdown {
    margin-bottom: 23px; }
  #cd-circle .clock-count-container {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #191e3a;
    margin: 0 0 12px 0; }
  #cd-circle .clock-val {
    font-size: 25px;
    color: #25d5e4;
    margin-bottom: 0; }
  #cd-circle .clock-text {
    color: #888ea8;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 16px; }