about summary refs log tree commit diff
path: root/app/assets/stylesheets/accounts.scss
blob: 57cc6e832eb215f565575ebfe38531318bd692f7 (plain) (blame)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
.card {
  background: #282c37;
  background-size: cover;
  padding: 60px 0;
  padding-bottom: 10px;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;

  &:after {
    background: rgba(0, 0, 0, 0.5);
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .name {
    display: block;
    font-size: 20px;
    line-height: 18px * 1.5;
    color: #fff;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 2;

    small {
      display: block;
      font-size: 14px;
      color: #2b90d9;
      font-weight: 400;
    }
  }

  .avatar {
    width: 120px;
    margin: 0 auto;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;

    img {
      width: 120px;
      height: 120px;
      display: block;
      border-radius: 120px;
    }
  }

  .details {
    display: flex;
    margin-top: 30px;
    position: relative;
    z-index: 2;
  }

  .counter {
    width: 80px;
    color: #9baec8;
    padding: 0 10px;
    border-right: 1px solid #9baec8;
    cursor: default;

    .counter-label {
      font-size: 12px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 5px;
    }

    .counter-number {
      font-weight: 500;
      font-size: 18px;
      color: #fff;
    }
  }

  .bio {
    flex: 1;
    font-size: 14px;
    line-height: 18px;
    padding: 5px 10px;
    color: #d9e1e8;
  }
}

.pagination {
  padding: 30px 0;
  text-align: center;
  overflow: hidden;

  a, .current, .next_page, .previous_page, .gap {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    padding: 6px 10px;
    text-decoration: none;
  }

  .current {
    background: #fff;
    border-radius: 100px;
    color: #282c37;
    cursor: default;
  }

  .gap {
    cursor: default;
  }

  .previous_page, .next_page {
    text-transform: uppercase;
    color: #d9e1e8;
  }

  .previous_page {
    float: left;
    padding-left: 0;

    .fa {
      display: inline-block;
      margin-right: 5px;
    }
  }

  .next_page {
    float: right;
    padding-right: 0;

    .fa {
      display: inline-block;
      margin-left: 5px;
    }
  }

  .disabled {
    cursor: default;
    color: lighten(#282c37, 10%);
  }
}