aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/material/css/profile.scss
blob: d5b9a5ffbba01e4d15def211e7ec1379919473a0 (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
.profile {
  .details {
    display: flex;
    flex-direction: row;

    .bio {
      flex: 1;
      font-size: 14px;
      line-height: 18px;
      padding: 5px 10px;
      order: 1;

      p {
        font-size: 14px;
        font-weight: 400;
        overflow: hidden;
        word-break: normal;
        word-wrap: break-word;
      }
    }

    .details-counters {
      order: 0;
      display: flex;
      flex-direction: row;
    }

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

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

      .counter-number {
        font-weight: 500;
        font-size: 18px;
        color: #00bcd4;
      }
    }
  }
  img.avatar {
    width: 10em;
  }
}