blob: 1cbd20bb49f727d7eebae917125013ce3ac3da79 (
plain)
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
|
div.group {
width : 250px;
}
div.group h1 {
font-family: sans-serif;
font-size : 16px;
color : white;
background : red;
}
div.title {
font-family: sans-serif;
font-size : 24px;
}
div.description {
font-family: sans-serif;
}
#title {
height: 160px;
}
#leftcol {
width:50%;
}
#rightcol {
float: right;
width:50%;
}
#footer {
font-size: 12px;
position: absolute;
bottom: 0;
}
|