index.css.in 1.4 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 42
    padding: 10px 20px;
    padding-top: 10px;
43

44 45 46 47 48 49 50 51 52 53 54 55 56
    background-color: #@LIGHT_COLOR_HEX@;
    border: 1px solid #@DARK_COLOR_HEX@;;

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

div.warning {
    border: 1px solid #@DARK_ERRORS_HEX@;;
    background-color: #@LIGHT_ERRORS_HEX@;;
    padding: 5px;
57 58
}

59 60
#lang {
    text-align: center;
61 62 63 64 65
}


.footer {
	font-size: 9px;
66
	color: #@DARK_COLOR_HEX@;
67 68
}

69 70 71 72
/* top line */

#top {
	text-align:left;
73
	background: #@DARK_COLOR_HEX@;
74 75

	padding: 0.25em;
76
	margin-bottom: 10px;
77 78 79 80 81 82 83
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-khtml-border-radius: 0.5em;
	border-radius: 0.5em;
}

#product-logo {
84 85 86
	background: url(img/product-logo.png) no-repeat;
	width: 600px;
	height: 52px;
87 88
	border: 0px;
}