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
83
84
85
86
87
88
89
90
//  =================
//      Imports
//  =================
 
@import '../../base/base';    // Base Variables
 
/*
    Simple Counter
*/
 
.simple--counter-container {
  display: flex;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
 
  .counter-container {
    margin-bottom: 23px;
 
    .counter-content {
      width: 100px;
      height: 100px;
      border-radius: 6px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      border: 1px solid $m-color_18;
    }
  }
 
  .s-counter {
    font-size: 35px;
    color: $m-color_13;
    margin-bottom: 0;
  }
 
  .s-counter-text {
    color: $m-color_6;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 16px;
  }
}
 
/*
    With Icon
*/
 
.icon--counter-container {
  display: flex;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
 
  .counter-container {
    margin-bottom: 23px;
  }
 
  .counter-ico {
    color: $m-color_13;
    font-size: 28px;
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }
 
  .counter-content {
    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;
  }
 
  .ico-counter {
    font-size: 25px;
    color: $m-color_6;
    margin-bottom: 0;
  }
 
  .ico-counter-text {
    color: $m-color_6;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 1px;
  }
}