aboutsummaryrefslogtreecommitdiffstats
path: root/root/static/style/ttsite.css
blob: 1d4dd903c33caf4bd1b91a760bf923244892b94d (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
117
118
119
120
121
/*     begin changes obgr_seneca     */
html, body {
	background: #ddd;
}

#doc {
    -webkit-box-shadow: 0 0 10px #444;
    -moz-box-shadow: 0 0 10px #444;
    box-shadow: 0 0 10px #444;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	border-radius: 10px;
	margin-top: 20px;
}

#hd, #ft, #nav, #content, .inside { padding: 0 1em 0.5em 0; }

#hd {
    background: #aaa;
	padding: 10px 20px 4px 20px;
	text-align: center;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}

#bd {
    background: #fff;
	padding: 2px 20px 2px 20px;
	text-align: center;
}

#bd h1 {
	margin: 0.2em 0;
}

#ft {
    background: #fff;
	padding: 2px 20px 10px 20px;
}

#input_form {
	text-align: center;
	/*border: inset 1px;*/
	padding: 10px;
    -webkit-border-radius: 0.6em;
    -moz-border-radius: 0.6em;
}

#input_form table {
	border: 0px;
	display: inline;
	text-align: left;
}

#input_form td {
	border: 0px;
}

#input_form input {
	background: #fff;
	border: inset 1px;
}

#input_form input:focus {
	background: #ddf;
}

#input_form button {
	background: #eef;
    border: 2px outset #dde;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
	border-radius: 0.4em;
	padding: 4px;
}

/*     End changes obgr_seneca     */

.message {
    color: #000;
}

.error {
    color: #f00;
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
}
.hnav, .hnav ul li a
{
    /* need to middor veritcal padding on .hnav and child anchor elements
     * because the anchors are _not_ block elements. since they are not
     * block elements web browsers will not expand .hnav to contain them
     * even with the extra padding. by applying the same padding to both
     * the parent .hnav _looks_ like its containing the child anchor
     * elements. 
     */
    padding-top: 3px;
    padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
    display: inline;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.hnav ul li a
{
    margin: 0 -1px 0 0;
    padding-left: 10px;
    padding-right: 10px;
    border-left: solid 0px #000;
    border-right: solid 0px #000;
    white-space: nowrap;
}