-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_style_columns.css
More file actions
41 lines (40 loc) · 1.05 KB
/
Copy path_style_columns.css
File metadata and controls
41 lines (40 loc) · 1.05 KB
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
/* column container */
.colmask {
margin:auto;
clear:both;
min-width:500px;
max-width:916px; /* width of whole page */
overflow:hidden; /* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
float:left;
width:100%;
position:relative;
}
.col1,
.col2,
.col3 {
float:left;
position:relative;
padding:0 0 1em 0;
overflow:hidden;
}
/* 2 Column (double page) settings */
.doublepage {
/*background:#eee;*/ /* right column background colour */
}
.doublepage .colleft {
right:50%; /* right column width */
/*background:#fff*/; /* left column background colour */
}
.doublepage .col1 {
width:46%; /* left column content width (column width minus left and right padding) */
left:52%; /* right column width plus left column left padding */
}
.doublepage .col2 {
width:46%; /* right column content width (column width minus left and right padding) */
left:56%; /* (right column width) plus (left column left and right padding) plus (right column left padding) */
}