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
|
@charset "utf-8";
/* CSS Document */
/* This sets all the margins and paddings to zero so you can controll this individually for each element instead. */
* {
margin: 0;
padding: 0;
}
/* This two rows sets 1em to 10px. */
html { font-size: 125%;}
body { font-size: 50%;}
body {
font-family: Arial, Helvetica, sans-serif;
height: 0px;
min-width:1024px;
}
@font-face{
font-family: icomoon;
src: url(../img/icomoon.ttf);
}
.cmsContent {
position: relative;
top: 54px;
left: 50%;
width: 0;
height: 0;
margin-left: -340px;
}
|