File: main.css

package info (click to toggle)
libgedit-gtksourceview 299.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 7,608 kB
  • sloc: ansic: 49,191; xml: 2,676; perl: 206; sh: 57; yacc: 45; makefile: 30; cobol: 20; objc: 19; javascript: 16; fortran: 14; python: 13; cpp: 8; ml: 3
file content (61 lines) | stat: -rw-r--r-- 1,237 bytes parent folder | download
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
body {
  /* Wrap around at a more comfortable reading width. */
  max-width: 72ch;

  /* Center page. */
  margin: auto;

  padding: 2ch;

  /* For reading text on a screen a sans-serif font is recommended. */
  font-family: sans-serif;
}

h1 {
  text-align: center;
  color: #a40000; /* Tango scarletred3 */
  background-color: #eeeeec; /* Tango aluminium1 */
  border-color: #555753; /* Tango aluminium5 */
  border-style: solid;
  border-radius: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

h2 {
  color: #ce5c00; /* Tango orange3 */
  background-color: #eeeeec; /* Tango aluminium1 */
  border-color: #f57900; /* Tango orange2 */
  border-width: medium;
  border-style: solid;
  border-radius: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

h3 {
  color: #4e9a06; /* Tango chameleon3 */
  border-bottom-color: #4e9a06; /* Tango chameleon3 */
  border-bottom-style: dotted;
  display: inline;
  padding-left: 0.25em;
  padding-right: 0.25em;
  padding-bottom: 0.1em;
}

p, li {
  line-height: 1.4;
}

/* Space out li elements (add margin _between_ elements). */
li:not(li:first-child) {
  margin-top: 0.8em;
}

a:link {
  color: #3465a4; /* Tango skyblue2 */
}

a:visited {
  color: #75507b; /* Tango plum2 */
}