forked from jeremydhoon/buildingblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilding_blocks_styles.css
105 lines (87 loc) · 1.52 KB
/
building_blocks_styles.css
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* styles for building blocks JS demo */
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
div#content {
width: 800px;
margin-left: auto;
margin-right: auto;
font-family: Helvetica, Georgia, sans-serif;
}
div#title_holder {
width: 100%;
}
div#left_block {
float: left;
}
div#right_block {
float: right;
}
div#page_title > h2 {
font-size: 36px;
text-align: center;
}
div#page_title {
width: 600px;
margin-left: auto;
margin-right: auto;
float: left;
}
div#construction_zone {
margin-top: 10px;
position: relative;
width: 800px;
height: 512px;
border: 2px solid #BBB;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.clear {
clear:both;
}
div.block {
width: 92px;
height: 92px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-width: 4px;
border-style: solid;
}
div.red {
border-color: #DD1111;
background-color: #FF0000;
}
div.blue {
border-color: #1111DD;
background-color: #0000FF;
}
div#clear_button_holder {
width: 100%;
text-align: center;
padding-top: 10px;
font-size: 10pt;
}
div#footer {
font-size: 10pt;
color: #AAA;
width: 100%;
text-align: center;
}
div#instructions {
font-style: italic;
font-size: 10pt;
color: #AAA;
width: 100%;
text-align: center;
}
div#construction_zone_label {
width: 100%;
text-align: center;
color: #DDD;
z-index:-1;
position: relative;
top: 266px;
}