aboutsummaryrefslogtreecommitdiff
path: root/tests/resources/assets/repo/style.css
blob: f2cad9dc1762f68e05ed724a3402e58d7bf0dd0f (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body {
  font-family: monospace;
  max-width: 1100px;
  margin: 0 auto 0 auto;
}

.logo {
  height: 6em;
  width: 6em;
}

.header-horizontal-grouping {
  display: flex;
  align-items: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

.header-description {
  margin-left: 2em;
}

nav {
  margin-top: 2em;
}

nav ul {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

nav li {
  margin-left: 10px;
}

nav a {
  padding: 2px 8px 0px 8px;
  color: black;
}

.selected-nav-item {
  background-color: hsl(0, 0%, 87%);
}

hr {
  margin-top: 0;
  border: 0;
  border-top: 3px solid hsl(0, 0%, 87%);
}

table {
  margin: 2em auto;
}

th {
  padding-bottom: 1em;
}

tbody tr:hover {
  background-color: hsl(0, 0%, 93%);
}

td {
  padding-left: 1em;
  padding-right: 1em;
}

footer {
  text-align: center;
}