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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
    ====================
        Visitors by Browser
    ====================
*/
 
.widget-four {
  position: relative;
  background: $m-color_10;
  padding: 20px;
  border-radius: 8px;
  height: 100%;
 
  .widget-heading {
    margin-bottom: 54px;
 
    h5 {
      font-size: 17px;
      display: block;
      color: $m-color_3;
      margin-bottom: 0;
    }
  }
 
  .widget-content {
    font-size: 17px;
 
    .browser-list {
      display: flex;
 
      &:not(:last-child) {
        margin-bottom: 30px;
      }
    }
 
    .w-icon {
      display: inline-block;
      padding: 9px 8px;
      border-radius: 50%;
      display: inline-flex;
      align-self: center;
      height: 34px;
      width: 34px;
      margin-right: 12px;
 
      svg {
        display: block;
        width: 17px;
        height: 17px;
      }
    }
 
    .browser-list {
      &:nth-child(1) .w-icon {
        background: $primary;
      }
 
      &:nth-child(2) .w-icon {
        background: $danger;
      }
 
      &:nth-child(3) .w-icon {
        background: $warning;
      }
 
      &:nth-child(1) .w-icon svg {
        color: $l-primary;
      }
 
      &:nth-child(2) .w-icon svg {
        color: $l-danger;
      }
 
      &:nth-child(3) .w-icon svg {
        color: $l-warning;
      }
    }
 
    .w-browser-details {
      width: 100%;
      align-self: center;
    }
 
    .w-browser-info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1px;
 
      h6 {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 0;
        color: $m-color_6;
      }
 
      p {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 0;
        color: $m-color_6;
      }
    }
 
    .w-browser-stats .progress {
      margin-bottom: 0;
      height: 22px;
      padding: 4px;
      border-radius: 20px;
      box-shadow: none;
 
      .progress-bar {
        position: relative;
 
        &:before {
          content: '';
          height: 7px;
          width: 7px;
          background: $m-color_10;
          position: absolute;
          right: 3px;
          border-radius: 50%;
          top: 3.49px;
        }
      }
    }
  }
}