boxes.css
1.02 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
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
/* Common values */
.BoxWrapper {
overflow: hidden;
position: relative;
}
.BoxContent {
}
.BoxNorthWest {
top: 0px;
left: 0px;
position: absolute;
}
.BoxNorth {
left: 0px;
top: 0px;
width: 1000px;
position: absolute;
background-repeat: repeat-x;
margin: 0px;
padding: 0px;
}
.BoxNorthEast {
top: 0px;
right: -0px;
position: absolute;
margin: 0px;
padding: 0px;
}
.BoxWest {
position: absolute;
top: 0px;
left: 0px;
height: 5000px;
background-repeat: repeat-y;
margin: 0px;
padding: 0px;
}
.BoxEast {
position: absolute;
top: 0px;
right: 0px;
height: 5000px;
background-repeat: repeat-y;
margin: 0px;
padding: 0px;
}
.BoxSouthWest {
position: absolute;
bottom: 0px;
left: 0px;
margin: 0px;
padding: 0px;
}
.BoxSouth {
position: absolute;
bottom: 0px;
right: 0px;
width: 1000px;
background-repeat: repeat-x;
margin: 0px;
padding: 0px;
}
.BoxSouthEast {
position: absolute;
bottom: 0px;
right: 0px;
margin: 0px;
padding: 0px;
}