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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
Copyright © 2008 Ubuntu-it - Created by Milo Casagrande <milo@ubuntu.com>,
Leo Iannacone <l3on@ubuntu.com>, Alessio Treglia <quadrispro@ubuntu.com>.
*/
/* Classes for styling Toc */
.toc-Giochi {
margin: 0 0 1em 1em;
float:right;
width: 30%;
font-size: 0.9em;
}
.toc-top-sx-Giochi {
background-image: url('../img/Giochi/toc-top-sx.png');
background-position: top left;
height:10px;
width:10px;
}
.toc-top-dx-Giochi {
background-image: url('../img/Giochi/toc-top-dx.png');
background-position: top right;
height:10px;
margin-left: 10px;
margin-top: -10px;
background-repeat: no-repeat;
background-color: #ff5950;
}
.toc-bottom-sx-Giochi {
background-image: url('../img/Giochi/toc-bottom-sx.png');
background-position: bottom left;
height:11px;
width:10px;
margin-top: -11px;
background-color: #ff5950;
background-repeat: no-repeat;
}
.toc-bottom-dx-Giochi {
background-image: url('../img/Giochi/toc-bottom-dx.png');
background-position: bottom right;
height:11px;
background-repeat: no-repeat;
margin-left: 10px;
margin-top: -11px;
background-color: #ff5950;
}
.toc-core-Giochi {
background-image: url('../img/Giochi/toc-logo.png');
background-position: 90% 20px;
background-color: #ff5950;
background-repeat: no-repeat;
padding-left: 15px;
min-height:110px;
padding-right:25px;
}
p.toc-core-heading-Giochi {
font-weight: bold;
margin-top: 0px;
}
.toc-core-Giochi a {
text-decoration: none;
color:#ffffff;
}
.toc-core-Giochi a:hover {
text-decoration: underline;
color:#ffffff;
}
.table-Giochi {
background-color: #EAE5DA;
font-size:10px;
border:none;
}
|