removed debug code i forgot existed
[soho-sigint.git] / server / styles / base_styles.css
1 * {
2     border: 0 none;
3     font-family: Arial, Helvetica, sans-serif ;
4     margin: 0;
5     padding: 0;
6     vertical-align: baseline;
7 }
8
9 html {
10     background: #000000 url('../img/web_background.jpg'); 
11     background-size:100%;
12     background-repeat: no-repeat;
13     background-attachment: fixed;
14 }
15
16 body {
17     color: #555555;
18     font-size: 14px;
19     line-height: 18px;
20     text-rendering: optimizelegibility;
21     clear: both;
22     margin:50px 0px;
23     padding:0px;
24     text-align:center;
25 }
26
27 ul, li, ol {
28     padding: 0;
29     list-style-type: none;
30     margin: 0;
31 }
32
33 a {
34     text-decoration: none;
35 }
36
37 .title {
38     font-size: 26px;
39     line-height: 32px;
40     font-weight: bold;
41     display: block;
42     width: 100%;
43 }
44
45 .contact_info {
46     font-size: 10px;
47     font-family: courier;
48     font-weight: lighter;
49 }
50
51
52 h1 {
53     font-size: 20px;
54     line-height: 24px;
55     font-weight: bold;
56     margin: 5px 0 10px 10px;
57 }
58
59 h2 {
60     font-size: 16px;
61     line-height: 20px;
62     font-weight: bold;
63     margin: 5px 0 10px 16px;
64 }
65
66 h3 {
67     font-size: 14px;
68     line-height: 18px;
69     font-weight: bold;
70     margin: 5px 0 10px 16px;
71 }
72
73 h4 {
74     font-size: 11px;
75     line-height: 24px;
76     font-weight: bold;
77     margin: 5px 0 10px 22px;
78 }
79
80 p {
81     margin: 5px 0 10px 16px;
82 }
83
84
85 .clearfix{
86     clear: both;
87 }
88
89
90
91 #wrapper {
92     width:980px;
93     margin:0px auto;
94     text-align:left;
95     padding:10px 0px 0px 0px;
96     border:1px solid #333;
97     background-color:#fff;
98     height: auto;
99 }
100
101 .wv_header{
102     width: 100%;
103     margin: 10px 0;
104     display: block;
105 }
106
107 .wv_content{
108     width: 960px;
109     margin: 10px 0;
110     padding: 10px;
111     display: block;
112 }
113
114 .wv_footer{
115     width: 980px;
116     height:20px;
117     margin: 10px 0 0 0;
118     background-color: #585858;
119     background-image: -moz-linear-gradient(center top , #585858, #3d3d3d);
120     color:#fff;
121     display: block;
122     text-align: center;
123     font-size: 11px;
124     font-weight: lighter;
125 }