source: code/Website/css/style.css@ 7937

Last change on this file since 7937 was 7849, checked in by dennisw, 15 years ago
File size: 1.8 KB
Line 
1body{
2 font-family:Arial, Helvetica, sans-serif;
3 margin:0px;
4 background-color:#666;
5}
6
7
8/*-------------------------------------------------- Div */
9
10#container{
11 width:900px;
12 margin:0px auto;
13 border:1px solid;
14 border-color:#000;
15 background-image:url(../images/bg.jpg);
16 background-repeat:repeat-x;
17 background-color:#f4f4f4;
18 background-position:0px 165px;
19}
20
21#header{
22 width:900px;
23 height:165px;
24}
25
26#navigation{
27 width:900px;
28 height:50px;
29 text-align:center;
30 font-size:14px;
31 margin-top:30px;
32}
33
34#content_top{
35 width:838px;
36 height:16px;
37 background-image:url(../images/content_bg_up.gif);
38 background-repeat:no-repeat;
39}
40
41#content_wrap{
42 width:838px;
43 margin:0px auto;
44 background-image:url(../images/content_bg_middle.gif);
45 background-repeat:repeat-y;
46}
47
48#content{
49 width:820px;
50 margin:0px auto;
51 font-size:14px;
52 color:#666;
53 padding-left:10px;
54}
55
56#content_bottom{
57 width:838px;
58 height:16px;
59 margin:0px auto;
60 background-image:url(../images/content_bg_down.gif);
61 background-repeat:no-repeat;
62}
63
64#footer{
65 width:900px;
66 height:35px;
67 font-size:12px;
68 color:#666;
69 text-align:center;
70 margin-top:30px;
71}
72
73
74/*-------------------------------------------------- Font */
75
76h1{
77 font-size:30px;
78 font-weight:bold;
79 color:#339933;
80 background-image:url(../images/underline.gif);
81 background-repeat:no-repeat;
82 background-position:0px bottom;
83}
84
85h2{
86 font-size:18px;
87 font-weight:bold;
88 color:#666;
89}
90
91#navigation a{
92 padding-right:10px;
93 padding-left:10px;
94 text-decoration:none;
95 color:#000;
96}
97
98#content a:hover{
99 color:#f7921c;
100}
101
102
103#content a{
104 padding-right:5px;
105 padding-left:5px;
106 font-size:10px;
107 text-decoration:none;
108 color:#000;
109}
110
111#navigation a:hover{
112 color:#f7921c;
113}
114
115#footer a{
116 text-decoration:underline;
117 color:#666;
118}
Note: See TracBrowser for help on using the repository browser.