/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
90.1.2 by a11emmjo
Made a standard css-file to be used for the whole lenasys-page.
1
@charset "utf-8";
2
/* CSS Document */
3
4
/* This sets all the margins and paddings to zero so you can controll this individually for each element instead. */
5
* {
6
	margin: 0;
7
	padding: 0;
8
}
9
10
/* This two rows sets 1em to 10px. */
11
html { font-size: 125%;}
12
body { font-size: 50%;}
13
14
15
body {	
16
	font-family:  Arial, Helvetica, sans-serif;
17
	height: 0px;
90.1.7 by a11emmjo
Bug #1183410 fixed.
18
	min-width:1024px;
90.1.2 by a11emmjo
Made a standard css-file to be used for the whole lenasys-page.
19
}
20
21
@font-face{
22
	font-family: icomoon;
23
	src: url(../img/icomoon.ttf);
24
}
25
85.1.12 by a11andoh
blurp
26
.cmsContent {
27
	position: relative;
90.1.12 by a11emmjo
Fixed so the bannermenu is scrollable horizontally but not vertically.
28
	top: 54px;
85.1.12 by a11andoh
blurp
29
	left: 50%;
90.1.12 by a11emmjo
Fixed so the bannermenu is scrollable horizontally but not vertically.
30
	width: 0;
31
	height: 0;
32
	margin-left: -340px; 
85.1.12 by a11andoh
blurp
33
}
34
90.1.2 by a11emmjo
Made a standard css-file to be used for the whole lenasys-page.
35