File: index.css

package info (click to toggle)
ruby-socksify 1.7.1%2Bgh-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 148 kB
  • sloc: ruby: 618; sh: 10; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 482 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
body {
  background-color: #8f001f;
  font-family: sans-serif;
}

a { 
  color: green;
}

h1 {
  text-align: center;
  margin: 0px;
  color: white;
  font-weight: bold;
  font-size: 400%;
}

div.content {
  background-color: white;
  color: black;
  max-width: 52em;
  margin-left: auto;
  margin-right: auto;
  padding: 0.2em 1em;
}

p {
  text-align: justify;
}

pre {
  color: #8f001f;
  background-color: #cfffbf;
  padding: 4px;
  margin: 2px 0px;
  border: 1px dashed green;
}