blob: d282a3994dd17bcda09938f02b6922abaf6fb68a (
plain)
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
|
.floatedpanel {
float: right;
}
.footer {
width: 3in;
padding: 3px;
margin: 0 auto;
clear: both;
height: 40px;
background: #efefef;
white-space: normal;
padding: 10px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
}
.brick {
font-size: 14px;
font-weight: bold;
width: 100px;
height: 100px;
margin: 10px;
padding: 10px;
background: #1E2123;
color: #fff;
float: left;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
}
|