summaryrefslogtreecommitdiff
path: root/static/styles/wiki-content.css
blob: 22aad110505e070acce940691751b8f6876cc04e (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
.wiki-content {
  margin: 0 16px;
  margin-bottom: 64px;
}

.wiki-content h1 {
  font-size: 32px;
  font-weight: 600;
}

.wiki-content h2 {
  font-size: 24px;
  font-weight: 600;
}

.wiki-content h3 {
  font-size: 24px;
}

.wiki-content h1, .wiki-content h2, .wiki-content h3 {
  margin: 16px 0;
}

.wiki-content p {
  margin: 0 16px;
}

.wiki-content ul {
  margin: 0 32px;
}

.wiki-content li {
  list-style-type: disc;
}

.wiki-content a {
  color: rgb(4, 120, 87);
  text-decoration: underline;
}

.wiki-content a:hover {
  color: rgb(16, 185, 129);
}

.wiki-content code {
  background-color: rgba(243, 244, 246, 255);
  color: rgba(5, 150, 105, 255);
  padding: 2px;
  border-radius: 2px;
}

.wiki-content blockquote {
  background-color: rgba(243, 244, 246, 255);
  padding: 2px;
  margin: 16px 0;

  border-left-width: 4px;
  border-color: rgba(5, 150, 105, 255);
}