blocks.css
1.36 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
/***********************************************************
* style for blocks
***********************************************************/
.block iframe {
width: 100%;
border: none;
}
/***********************************************************
* the handles to where you can drag the blocks
***********************************************************/
.block-target {
margin: 5px;
height: 2px;
height: 15px;
border: 1px dashed #e0e0e0;
}
.block-target-hover {
background: #ffd;
border: 1px solid red;
height: 30px;
}
/***********************************************************
* put borders around boxes and blocks when organizing boxes
***********************************************************/
#box-organizer div.box {
border: 1px solid #ccc;
background-color: white;
background-repeat: no-repeat;
background-position: top right;
}
#box-organizer div.box-1 {
background-image: url(../images/blocks/1.png);
}
#box-organizer div.box-2 {
background-image: url(../images/blocks/2.png);
}
#box-organizer div.box-3 {
background-image: url(../images/blocks/3.png);
}
#box-organizer div.box-1 .block {
border: 2px dashed green;
}
#box-organizer div.box-2 .block {
border: 2px dashed red;
}
#box-organizer div.box-3 .block {
border: 2px dashed blue;
}
.block-footer-content {
clear: both;
margin-top: 1em;
text-align: center;
}