summaryrefslogtreecommitdiff
path: root/local.css
blob: 1d6489ae336f36391930605d5abc52744f4e2a59 (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
60
61
/* Radsecproxy wiki styling */
body {
  font-size: 13pt;
  font-family: sans-serif;
  background-color: #28546C;
}

a {
  color: #08c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1024px;
  margin: 2% auto;
  background-color: #fefefe;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 2px 2px 5px #333;
}

.sidebar {
  background-color: #2c3e50;
  text-transform: capitalize;
  padding: 0;
  box-shadow: 2px 2px 5px #eee;
  border-radius: 2px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  line-height: 30px;
  text-indent: 20px;
}

.sidebar a {
  display: block;
}


.sidebar a:hover {
  background-color: #34495e;
  text-decoration: none;
}

.sidebar .selflink {
  color: #bdc3c7
}

#pageinfo {
  border-top: 1px solid #ccc;
}