Commit d82b1b038d352fa2e79d779358619de1567f33c7
Committed by
Rodrigo Souto
1 parent
f82f1955
Exists in
master
and in
29 other branches
Change blocks position
Signed-off-by: Fabio Teixeira <fabio1079@gmail.com>
Showing
1 changed file
with
16 additions
and
7 deletions
Show diff stats
public/designs/templates/lefttopright/stylesheets/style.css
... | ... | @@ -4,26 +4,35 @@ |
4 | 4 | } |
5 | 5 | |
6 | 6 | .box-1 { |
7 | - width: 59%; | |
8 | - float: right; | |
9 | - margin-right: 5px | |
7 | + width: 58%; | |
8 | + float: left; | |
9 | + margin: 1% 1% 0% 1%; | |
10 | + background-color: red; | |
10 | 11 | } |
11 | 12 | |
12 | -.box-3 { | |
13 | + | |
14 | +.box-2 { | |
13 | 15 | position: relative; |
14 | 16 | float: left; |
15 | 17 | width: 20%; |
18 | + /*top: -165px;*/ | |
19 | + /*margin-top: -17.5%;*/ | |
20 | + background-color: blue; | |
16 | 21 | } |
17 | 22 | |
18 | -.box-2 { | |
23 | +.box-3 { | |
19 | 24 | position: relative; |
20 | 25 | float: right; |
21 | 26 | width: 20%; |
27 | + margin-top: 1%; | |
28 | + background-color: yellow; | |
22 | 29 | } |
23 | 30 | |
24 | 31 | .box-4 { |
25 | - float: right; | |
26 | - width: 79.5%; | |
32 | + float: left; | |
33 | + width: 79%; | |
34 | + background-color: green; | |
35 | + margin-left: 21%; | |
27 | 36 | } |
28 | 37 | |
29 | 38 | #profile-activity ul, | ... | ... |