File: _base.scss

package info (click to toggle)
compass-layoutgala-plugin 0.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 240 kB
  • sloc: ruby: 23; makefile: 2; sh: 1
file content (85 lines) | stat: -rw-r--r-- 1,615 bytes parent folder | download | duplicates (4)
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
85
@import "compass/reset";
@import "compass/typography/lists/inline-list";
@import "compass/utilities/general/float";

$layoutgala-container-selector: unquote("div.container");
$layoutgala-header-selector: h1;
$layoutgala-wrapper-selector: unquote("div.wrapper");
$layoutgala-content-selector: unquote("div.content");
$layoutgala-aside1-selector: unquote("div.navigation");
$layoutgala-aside2-selector: unquote("div.extra");
$layoutgala-footer-selector: unquote("div.footer");

#{$layoutgala-header-selector} {
	background: #EEE;
	color: #79B30B;
}
#{$layoutgala-aside1-selector} {
	background: #B9CAFF;
}
#{$layoutgala-content-selector} {
	background: white;
}
#{$layoutgala-aside2-selector}{
	background: #FF8539;
}
#{$layoutgala-footer-selector} {
	background: #333;
	color: #FFF;
}

div#intro,
div#details {
	text-align: justify;
	margin: 0 0 20px 20px;
}
a#indexIta {
	position: absolute;
	top: 31px;
	right: 10px;
}
a#htmllogo {
	position: absolute;
	top: 31px;
	right: 50px;
}
p.codice{
	text-align: left;
	background: #E8ECFF;
	line-height: 1.4;
}
ul#gallery {
	@include float(left);
	@include inline-list;
}
ul#gallery li{
	@include float(left);
	margin: 0 0 20px 20px;
	width: 120px;
	text-align: center;
	font-size: 50%;
}
ul#gallery div.container {
	display: block;
	width: 100px;
	height: 70px;
	border: 0px solid;
	margin: 0 auto 5px;
}
ul#gallery a {
	display: block;
	height: 140px;
	padding: 10px 0;
	background: #BFDDED;
	color: #333;
	border: 1px solid #007BC4;
	text-decoration: none;
}
ul#gallery a:hover {
	background: #007BC4;
	color: #FFF;
	border-color: #000;
}
div#details {
	clear: left;
}