about summary refs log tree commit diff
path: root/app/assets/stylesheets/accounts.scss
blob: 89fa8f5bcb68a13715670d2deab79b897cd1caca (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
.card {
  background: $primary-color image-url('background-photo.jpeg');
  background-size: cover;
  padding: 80px 0;
  padding-bottom: 30px;
  border-radius: 4px 4px 0 0;

  .bio {

  }

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

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

  .avatar {
    width: 120px;
    margin: 0 auto;
    margin-bottom: 15px;

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