Project

General

Profile

Download (1.32 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Themetastic, for Drupal 5.0
3
 * Stefan Nagtegaal, iStyledThis [dot] nl
4
 * Steven Wittens, acko [dot] net
5
 *
6
 */
7

    
8
body {
9
  /* Center layout */
10
  text-align: center;
11
  /* Allow text resizing */
12
  font-size: 80%;
13
}
14

    
15
#header-region, #wrapper #container {
16
  /* Reset text alignment */
17
  text-align: left;
18
}
19

    
20
#wrapper #container #center {
21
  /* Reduce amount of damage done by extremely wide content */
22
  overflow: hidden;
23
}
24

    
25
#wrapper #container #center .right-corner .left-corner {
26
  /* Because of the lack of min-height, we use height as an alternative */
27
  height: 400px;
28
}
29

    
30
fieldset {
31
  /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
32
  background: none;
33
}
34

    
35
ul.primary {
36
  /* Fix missing top margin */
37
  position: relative;
38
/*  top: 0.5em; */
39
}
40

    
41
/* Prevent fieldsets from shifting when changing collapsed state. */
42
html.js fieldset.collapsible {
43
  position: relative;
44
  top: -1em;
45
}
46
html.js fieldset.collapsed {
47
  top: 0;
48
  margin-bottom: 1em;
49
}
50

    
51
td.menu-disabled {
52
  /* Use filter to emulate CSS3 opacity */
53
  filter: alpha(opacity=50);
54
}
55

    
56
#header-region {
57
  /* Because of the lack of min-height, we use height as an alternative */
58
  height: 1em;
59
}
60

    
61
#attach-hide label, #uploadprogress div.message {
62
  /* Fading elements in IE causes the text to bleed unless they have a background. */
63
  background-color: #ffffff;
64
}
(4-4/12)