Subversion Repositories SvarDOS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
285 mateuszvis 1
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
2
 
3
html {
4
  background-color: #eee;
5
}
6
 
7
body {
8
  font-size: 1.2em;
9
  font-family: 'Roboto Mono', monospace;
10
  width: 78ch;
11
  background-color: #fff;
12
  margin: 0 auto;
13
  padding: 0.5em;
14
  padding-top: 0;
15
  white-space: pre;
16
  border: 1px #aaa solid;
17
}
18
 
19
h1 {
20
  font-size: 1em;
21
  font-weight: bold;
22
  display: inline;
23
}
24
 
25
a {
26
  color: #00f;
27
  text-decoration: none;
28
}
29
 
30
a:hover {
31
  color: #fff;
32
  background-color: #44f;
33
}
34
 
35
a.liketext, a.liketext:hover {
36
  color: inherit;
37
  background-color: inherit;
38
  font-size: inherit;
39
  font-weight: inherit;
40
  text-decoration: inherit;
41
}
42
 
43
div {
44
  margin: 0 -0.5em;
45
  padding: 0 0.5em;
46
  display: flex;
47
  justify-content: space-between;
48
  background-color: #666;
49
}
50
 
51
span {
52
  color: #eee;
53
  margin: 0;
54
  padding: 0;
55
}
56
 
57
span.notice {
58
  color: #330;
59
  background-color: #f70;
60
}
61
 
62
span.boring {
63
  color: #888;
64
}