about summary refs log tree commit diff
path: root/app/assets/stylesheets/accounts.scss
blob: a777633f1aea15819ab69f86f18d910b6ee7d150 (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
.card {
  display: flex;
  background: $primary-color;
  box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);

  .bio {
    flex-grow: 1;
  }

  .name {
    font-size: 20px;
    line-height: 18px * 1.5;
    color: $quaternary-color;

    small {
      display: block;
      font-size: 14px;
      color: $quaternary-color;
    }
  }

  .avatar {
    width: 96px;
    float: left;
    margin-right: 10px;
    padding: 10px;
    padding-right: 0;
    padding-left: 9px;
    margin-top: -30px;

    img {
      width: 94px;
      height: 94px;
      display: block;
      border-radius: 5px;
      box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
    }
  }
}