aboutsummaryrefslogtreecommitdiffstats
path: root/root/static/style/ttsite.css
blob: e06357c13dd392ecdbbfb235b64738af17100c56 (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*     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: #aaa;
	padding: 2px 20px 10px 20px;
}

#input_form {
    display: block; 
    width: 250px; 
    text-align:left;
	padding: 10px;
    -webkit-border-radius: 0.6em;
    -moz-border-radius: 0.6em;
}


#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;
}

#login_form label  {
    text-align:left;
    float: left;
    width: 140px;
}

#login_form {
    display: block; 
    float: left;
    margin-bottom: 2.5em;
}

#login_form_inputs {
    margin-bottom: 1.5em;
}

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

#login_form_line span {
    float: left;
}

#login_form button {
    float: right;
}    

/*     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;
}