index.css.in 1.19 KB
Newer Older
1 2 3
/* Stylesheet for index file */

body {
Sergey V Turchin's avatar
Sergey V Turchin committed
4
	background-color: #@MIDDLE_COLOR_HEX@;
5 6 7 8 9
	color: #@MIDDLE_LABELS_HEX@;
	margin: 0px;
	padding: 10px;
	font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 9pt;
10 11
}

12 13
p {
    text-align: justify;
14 15 16
}

a:link, a:visited { 
17 18
    text-decoration: none; 
    color: #39c;
19 20 21
}

a:hover { 
22 23
    text-decoration: underline; 
    color: #f60;
24 25 26
}

ul li {
27 28 29
    padding-left: 3px;
    text-align: left;
    list-style: square url('img/bullet.png');
30 31
}

32 33
li.spacebefore {
    margin-top: 1em;
34 35
}

36 37 38 39
div.box {
    position: relative;
    width: 780px;
    margin-top: 10px;
40

41
    background: #@LIGHT_LABELS_HEX@;
42 43 44 45
    padding: 0.2em;
    padding-right: 2mm;
    padding-top: 2mm;
    padding-bottom: 2mm;
46

47
    border: 1px solid #c1c3cb;
48 49
}

50 51
#lang {
    text-align: center;
52 53 54 55 56
}


.footer {
	font-size: 9px;
57
	color: #@DARK_COLOR_HEX@;
58 59
}

60 61 62 63 64 65 66 67 68 69 70 71 72 73
/* top line */

#top {
	text-align:left;
	background: url('img/gradient-top.png') 0% 0% repeat-x;

	padding: 0.25em;
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-khtml-border-radius: 0.5em;
	border-radius: 0.5em;
}

#product-logo {
74
	background: url('img/product-logo.png') no-repeat;
75
	width: 275px;
Sergey V Turchin's avatar
Sergey V Turchin committed
76
	height: 45px;
77 78
	border: 0px;
}