aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/_sass/be.scss
blob: 0e7e8999f9a8572049a2c44e5ff8bb6a689afbc8 (plain)
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
// Build Encyclopedia and Skylark Library

pre.rule-signature {
  white-space: normal;
  word-wrap: break-word;
  word-break: normal;
}

colgroup {
  .col-param {
    width: 25%;
  }

  .col-description {
    width: 75%;
  }
}

$table-params-border-color: #81c784;
$table-params-head-color: #fff;
$table-params-body-bg-color: #e8f5e9;

.table-params {
  border: 1px solid $table-params-border-color;

  thead > tr > th {
    color: $table-params-head-color;
    border: 1px solid $table-params-border-color;
    background-color: $table-params-border-color;
  }

  tbody > tr > td {
    background-color: $table-params-body-bg-color;
    border: 1px solid $table-params-border-color;
  }
}

$table-implicit-border-color: #c0c0c0;
$table-implicit-head-color: #fff;
$table-implicit-body-bg-color: #f0f0f0;

.table-implicit {
  border: 1px solid $table-implicit-border-color;

  thead > tr > th {
    color: $table-implicit-head-color;
    border: 1px solid $table-implicit-border-color;
    background-color: $table-implicit-border-color;
  }

  tbody > tr > td {
    background-color: $table-implicit-body-bg-color;
    border: 1px solid $table-implicit-border-color;
  }
}


$toc-border-color: #c8e6c9;
$toc-color: #757575;

.toc {
  border-left: 4px solid $toc-border-color;
  padding-left: 18px;
  margin-bottom: 20px;

  h1,
  h2 {
    font-size: 24px;
    color: $toc-color;
    margin-bottom: 12px;
  }

  ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;

    li {
      line-height: 36px;
      font-size: 16px;
      font-weight: 400;
    }
  }
}

// Command-line Reference
dt {
  margin-top: .5em;
}

dd {
  margin-left: 2em;
}