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:
|
--> CSS-Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>style</title>
BODY {
color: #282828; /* deffiniert die textfarbe*/
text-align : center; /* deffiniert die 'textposition'*/
font-size: 11px ; /* schriftgröße*/
font-family: Verdana;
background-attachment: fixed; /* das der hintergrund fixiert ist, man kann hier auch scroll einsetzen*/
background-position: 0px 0px; /* oder auch center, left, right, top, bottom*/
background-color: transparent; /* hintergrundfarbe*/
}
a:link, a:active, a:visited
{
color: #282828;
font-size: 11px;
font-family: Verdana;
line-height: 11pt;
text-decoration: none;
cursor:default;
}
a:hover
{
color: #282828;
font-family: Verdana;
font-size: 11px;
font-weight:bold;
cursor:default;
}
table {
color: #282828; /* deffiniert die textfarbe*/
text-align : center; /* deffiniert die 'textposition'*/
font-size: 11px ; /* schriftgröße*/
font-family: Verdana;
background-color: #F1F1E2; /* hintergrundfarbe*/
border-collapse: collapse;
border-width: 1px;
border-color: #F1F1E2;
}
tr {
color: #282828; /* deffiniert die textfarbe*/
text-align : center; /* deffiniert die 'textposition'*/
font-size: 11px ; /* schriftgröße*/
font-family: Verdana;
background-color: #F1F1E2; /* hintergrundfarbe*/
border-collapse: collapse;
border-width: 1px;
border-color: #F1F1E2;
}
td {
color: #282828; /* deffiniert die textfarbe*/
text-align : center; /* deffiniert die 'textposition'*/
font-size: 11px ; /* schriftgröße*/
font-family: Verdana;
background-color: #F1F1E2; /* hintergrundfarbe*/
border-collapse: collapse;
border-width: 1px;
border-color: #F1F1E2;
}
th {
color: #282828; /* deffiniert die textfarbe*/
text-align : center; /* deffiniert die 'textposition'*/
font-size: 11px ; /* schriftgröße*/
font-family: Verdana;
background-color: #F1F1E2; /* hintergrundfarbe*/
border-collapse: collapse;
border-width: 1px;
border-color:#F1F1E2;
}
input {
color: #282828;
font-family: Verdana;
font-size: 11px;
text-align: center;
background-color: #F1F1E2; /* hintergrundfarbe*/
border:1px #F1F1E2;
}
textarea {
color: #282828;
font-family: Verdana;
font-size: 11px;
text-align: center;
background-color: #F1F1E2; /* hintergrundfarbe*/
border:1px #F1F1E2;
}
|