about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/metadata.scss
blob: b66cce3c1fa44803c9a3f963a3302d67598336fd (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
.account__header__fields {
  $meta-table-border: lighten($ui-base-color, 8%);

  border-collapse: collapse;
  padding: 0;
  margin: 15px -15px -15px -15px;
  border: 0 none;
  border-top: 1px solid $meta-table-border;
  border-bottom: 1px solid $meta-table-border;

  td, th {
    padding: 15px;
    border: 0 none;
    border-bottom: 1px solid $meta-table-border;
    vertical-align: middle;
  }

  tr:last-child {
    td, th {
      border-bottom: 0 none;
    }
  }

  td {
    color: $ui-primary-color;
    text-align: center;
    width:100%;
    padding-left: 0;
  }

  th {
    padding-left: 15px;
    font-weight: bold;
    text-align: center;
    width: 94px;
    color: $ui-secondary-color;
    background: darken($ui-base-color, 8%);
  }

  a {
    color: $classic-highlight-color;
  }
}