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
/*
    ==================
        Dev Summit
    ==================
*/
 
.widget-card-two {
  background: $m-color_10;
  padding: 20px 0px;
 
  .media {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 19px;
    padding-bottom: 21px;
    border-bottom: 1px dashed $dark;
 
    .w-img {
      margin-right: 10px;
 
      img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 3px solid $m-color_3;
      }
    }
 
    .media-body {
      align-self: center;
 
      h6 {
        font-weight: 700;
        font-size: 15px;
        letter-spacing: 0;
        margin-bottom: 0;
      }
 
      p {
        margin-bottom: 0;
        font-weight: 600;
        color: $m-color_6;
      }
    }
  }
 
  .card-bottom-section {
    text-align: center;
 
    h5 {
      font-size: 14px;
      color: $m-color_14;
      font-weight: 700;
      margin-bottom: 20px;
    }
 
    .img-group img {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid $dark;
 
      &:not(:last-child) {
        margin-right: 5px;
      }
    }
 
    a {
      display: block;
      margin-top: 18px;
      background: $primary;
      color: $white;
      padding: 10px 10px;
      transform: none;
      margin-right: 15px;
      margin-left: 15px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 1px;
 
      &.btn {
        &:hover, &:focus {
          border-color: $primary;
        }
      }
    }
  }
}