13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
// WIDGETS
.tilebox-one {
  i {
    font-size: 30px;
  }
}
 
.tilebox-two {
  i {
    font-size: 48px;
    opacity: 0.2;
    margin-top: 20px;
  }
}
 
.widget-user {
  position: relative;
 
  img {
    width: 60px;
    height: 60px;
  }
 
}
 
.user-position {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  font-size: 16px;
  text-align: center;
  right: 0;
  left: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
  -webkit-flex-direction: row;
 
  span {
    transform: rotate(90deg);
  }
}
 
.tilebox-three .bg-icon {
    height: 80px;
    width: 80px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    background-clip: padding-box;
  border: 1px dashed $text-muted;
  background-color: $gray-lightest;
  margin-right: 20px;
 
  i {
    line-height: 80px;
    font-size: 36px;
    color: $text-muted;
  }
}
 
 
/* Inbox-widget */
 
.inbox-widget {
  .inbox-item {
    border-bottom: 1px solid $gray-lightest;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    .inbox-item-img {
      display: block;
      float: left;
      margin-right: 15px;
      width: 40px;
    }
    img {
      width: 40px;
    }
    .inbox-item-author {
      color: darken($gray-light,40%);
      display: block;
      margin: 0;
    }
    .inbox-item-text {
      color: $gray-light;
      display: block;
      font-size: 12px;
      margin: 0;
    }
    .inbox-item-date {
      color: $gray-light;
      font-size: 11px;
      position: absolute;
      right: 7px;
      top: 2px;
    }
  }
}