Projet

Général

Profil

Paste
Télécharger (681 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / adaptivetheme / at_core / css / at.layout.css @ 74f6bef0

1
/* Layout Helpers */
2

    
3
/* Center layout be default */
4
.container {
5
  margin: 0 auto;
6
}
7

    
8

    
9
/* Prevent the layout from collapsing if there is nothing in the content column */
10
.content-inner {
11
  min-height: 1px;
12
}
13

    
14

    
15
.lt-ie7 .content-inner {
16
  height: 1px;
17
}
18

    
19

    
20
/* Ensure the content column is the full width of its container */
21
#content-column,
22
.content-column {
23
  width: 100%;
24
}
25

    
26

    
27
/* Compass clearfix */
28
.clearfix:after {
29
  content: "";
30
  display: table;
31
  clear: both;
32
}
33

    
34
.clearfix {
35
  zoom: 1;
36
}
37

    
38

    
39
/* AT Panels */
40
.one-column .region,
41
div.at-panel .region-conditional-stack {
42
  float: none;
43
  display: block;
44
  clear: both;
45
  width: 100%;
46
}
47

    
48
.lt-ie8 .at-panel {
49
  overflow: hidden;
50
}