summaryrefslogtreecommitdiff
path: root/frontend/beta/css/yui/grids.css
Unidiff
Diffstat (limited to 'frontend/beta/css/yui/grids.css') (more/less context) (show whitespace changes)
-rw-r--r--frontend/beta/css/yui/grids.css116
1 files changed, 116 insertions, 0 deletions
diff --git a/frontend/beta/css/yui/grids.css b/frontend/beta/css/yui/grids.css
new file mode 100644
index 0000000..8b64f89
--- a/dev/null
+++ b/frontend/beta/css/yui/grids.css
@@ -0,0 +1,116 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29/*
30Copyright (c) 2006, Yahoo! Inc. All rights reserved.
31Code licensed under the BSD License:
32http://developer.yahoo.net/yui/license.txt
33version: 0.11.3
34*/
35body {
36 text-align:center;
37}
38
39#doc {
40 width:57.69em;
41 *width:56.3em; /* IE */
42 min-width:750px;
43 margin:auto;
44 text-align:left;
45}
46
47#hd,#bd {margin-bottom:1em;text-align:left;}
48#ft {font-size:77%;font-family:verdana;clear:both;}
49
50/* rules for main templates */
51.yui-t1 #yui-main .yui-b, .yui-t2 #yui-main .yui-b, .yui-t3 #yui-main .yui-b,
52.yui-t4 .yui-b, .yui-t5 .yui-b, .yui-t6 .yui-b {float:right;}
53.yui-t1 .yui-b, .yui-t2 .yui-b, .yui-t3 .yui-b, .yui-t4 #yui-main .yui-b, .yui-
54t5 #yui-main .yui-b, .yui-t6 #yui-main .yui-b {float:left;}
55
56/* t1: L160 */
57.yui-t1 #yui-main .yui-b {width:76%;min-width:570px;}
58.yui-t1 .yui-b {width:21.33%;min-width:160px;}
59
60/* t2 & t4: L180 & R180 */
61.yui-t2 #yui-main .yui-b, .yui-t4 #yui-main .yui-b {width:73.4%;min-
62width:550px;}
63.yui-t2 .yui-b, .yui-t4 .yui-b {width:24%;min-width:180px;}
64
65/* t3 & t6: L300 & R300 */
66.yui-t3 #yui-main .yui-b, .yui-t6 #yui-main .yui-b {width:57.6%;min-
67width:430px;}
68.yui-t3 .yui-b, .yui-t6 .yui-b {width:40%;min-width:300px;}
69
70/* t5: R240 */
71.yui-t5 #yui-main .yui-b {width:65.4%;min-width:490px;}
72.yui-t5 .yui-b {width:32%;min-width:240px;}
73
74/* t7: 750 */
75
76
77
78 /*grid-generic rules for all templates */
79
80/* all modules and grids nested in a grid get floated */
81.yui-g .yui-u, .yui-g .yui-g, .yui-ge .yui-u, .yui-gf .yui-u {
82 float:right;
83 display:inline; /* IE */
84}
85
86/* float left and kill margin on first for added flex */
87.yui-g .first, .yui-gd .first, .yui-ge .first, .yui-gf .first {float:left; }
88
89/* 2 col */
90.yui-g .yui-u, .yui-g .yui-g {width:49.1%;}
91.yui-g .yui-g .yui-u {width:48.1%;} /* smaller for nested to preserve margins */
92
93/* 3 col */
94.yui-gb .yui-u, .yui-gc .yui-u, .yui-gd .yui-u {
95 float:left; /* need to reverse the order for 3 */
96 margin-left:2%; *margin-left:1.895%;
97 width:32%;
98}
99
100.yui-gb .first, .yui-gc .first, .yui-gd .first {margin-left:0;}
101
102/* colspan 2 */
103.yui-gc .first, .yui-gd .yui-u {width:66%;}
104.yui-gd .first {width:32%;}
105
106/* colspan 3 */
107.yui-ge .yui-u {width:24%;}
108.yui-ge .first, .yui-gf .yui-u {width:74.2%;}
109.yui-gf .first {width:24%;}
110.yui-ge .first {width:74.2%;}
111
112/* self clear floated parent containers */
113#bd:after, .yui-g:after, .yui-gb:after, .yui-gc:after, .yui-gd:after, .yui-
114ge:after, .yui-gf:after
115{content:".";display:block;height:0;clear:both;visibility:hidden;}
116#bd, .yui-g, .yui-gb, .yui-gc, .yui-gd, .yui-ge, .yui-gf {zoom:1;} /* IE */