blob: a800a28427c908a8735cde1feeeb40cbfb889afa (
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
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
|
<?php
/**
* CSS grid
*
* @package Elgg.Core
* @subpackage UI
*
* To work around subpixel rounding discrepancies, apply .elgg-col-last to
* the last column (@todo we need broswer-specific test cases for this).
*/
?>
/* ***************************************
GRID
*************************************** */
.elgg-grid {
}
.elgg-col {
float: left;
}
.elgg-col-1of1 {
float: none;
}
.elgg-col-1of2 {
width: 50%;
}
.elgg-col-1of3 {
width: 33.33%;
}
.elgg-col-2of3 {
width: 66.66%;
}
.elgg-col-1of4 {
width: 25%;
}
.elgg-col-3of4 {
width: 75%;
}
.elgg-col-1of5 {
width: 20%;
}
.elgg-col-2of5 {
width: 40%;
}
.elgg-col-3of5 {
width: 60%;
}
.elgg-col-4of5 {
width: 80%;
}
.elgg-col-1of6 {
width: 16.66%;
}
.elgg-col-5of6 {
width: 83.33%;
}
.elgg-col-last {
width: auto;
float: none;
display: table-cell;
}
.elgg-col-last:after {
clear: both;
display: block;
visibility: hidden;
overflow: hidden;
height: 0 !important;
line-height: 0;
font-size: xx-large;
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
}
|