summaryrefslogtreecommitdiff
path: root/views/style.scss
blob: 25833e7f2526863cdbed5d3af38bce5d48522970 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* conf */
$formbg: #F5F5F5;
$formborder: #D0D0D0;

/* general */
body {
  margin: {
    left: 20px;
    right: 20px;
    top: 0px;
  }
  font: {
    family: arial,helvetica,clean,sans-serif;
  }
}

/* headings */
h1 {
  font: {
    family: Helvetia, Verdana, sans;
    weight: bold;
    size: 1.4em;
  }
  color: #333;
  margin-top: 10px;
}
h4 {
  color: #333;
  font-size: 0.9em;
  margin-top: 0px;
  margin-bottom: 6px;
  font-weight: 900;
  border-bottom: {
    color: #efefef;
    style: solid;
    width: 0.1px;
  }
}

/* tables */
th {
  color: #000;
  text-align: left;
  font-size: 1.1em;
  padding: 8px 0;
}
td {
  vertical-align: top;
}

/* form */
fieldset {
  border: {
    style: solid;
    width: 1px;
    color: $formborder;
    radius: 4px;
  }
  background-color: $formbg;
}
button {
  margin-bottom: 10px;
}

/* lists */
dl {
  border: {
    style: solid;
    width: 1px;
    color: #efefef;
    radius: 4px;
  }
}
dt {
  font-size: 0.9em;
}
dd {
  font-size: 0.8em;
}

/* links */
a {
  text-decoration: none;
  color: #00A;
  &:hover { color: #A00; }
}

/* block-elements */
p.neighbors {
  margin-top: 0px;
}

/* others */
em {
  font-size: 0.8em;
}

img.compound {
  border: {
    width: 1px;
    style: solid;
    color: $formborder;
    radius: 4px;
  }
}

.footer {
  margin: 200px 0px 20px 4px;
  text-align: right;
}

.footer a {
  text-decoration: none;
  color: #000;
  &:hover { color: #900; }
}