aboutsummaryrefslogtreecommitdiff
path: root/examples/macros/styles.css
blob: a8109a8206d0a653d20e0d0d2de42fbd73fb3371 (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
html {
  font-size: 4rem;
  margin: 0;
  padding: 0;
  background-color: black;

  color: rgb(0, 255, 0);
  font-family: "Courier";
}

body {
  margin: 48px auto;
  text-align: center;
}

.Line {
  font-size: 0.5rem;
  font-family: monospace;
}

.Table {
  display: grid;
  width: fit-content;
}

.Row,
.Header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  text-align: right;

  column-gap: 2rem;
}

.Heading {
  text-align: right;
}

.Header {
  border-bottom: 1px solid rgb(0, 255, 0);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.Heading:nth-of-type(2) {
  text-align: left;
}