LEFT | RIGHT |
1 body | 1 body |
2 { | 2 { |
3 width: 540px; | 3 width: 540px; |
4 height: 540px; | 4 height: 540px; |
5 margin: auto; | 5 margin: auto; |
6 border: 5px solid #a42c23; | 6 border: 5px solid #a42c23; |
7 background: white; | 7 background: white; |
8 } | 8 } |
9 | 9 |
10 h1 | 10 h1 |
11 { | 11 { |
| 12 height: 120px; |
12 font-family: Arial, Helvetica, sans; | 13 font-family: Arial, Helvetica, sans; |
13 font-size: 28px; | 14 font-size: 28px; |
14 line-height: 120px; | |
15 text-align: center; | 15 text-align: center; |
16 margin: 0; | 16 margin: 0; |
17 color: #a42c23; | 17 color: #a42c23; |
| 18 |
| 19 display: -webkit-box; |
| 20 -webkit-box-orient: vertical; |
| 21 -webkit-box-pack: center; |
| 22 |
| 23 display: box; |
| 24 box-orient: vertical; |
| 25 box-pack: center; |
18 } | 26 } |
19 | 27 |
20 #facebook, #twitter, #gplus | 28 #facebook, #twitter, #gplus |
21 { | 29 { |
22 padding-left: 125px; | 30 padding-left: 125px; |
23 height: 140px; | 31 height: 140px; |
24 background-repeat: no-repeat; | 32 background-repeat: no-repeat; |
25 background-size: 64px; | 33 background-size: 64px; |
26 background-position: 30px 50%; | 34 background-position: 30px 50%; |
27 | 35 |
(...skipping 26 matching lines...) Expand all Loading... |
54 #gplus | 62 #gplus |
55 { | 63 { |
56 background-image: url("../img/gplus-64.png"); | 64 background-image: url("../img/gplus-64.png"); |
57 background-color: #f1f1f1; | 65 background-color: #f1f1f1; |
58 } | 66 } |
59 | 67 |
60 #___plus_0 | 68 #___plus_0 |
61 { | 69 { |
62 margin-top: 12px !important; | 70 margin-top: 12px !important; |
63 } | 71 } |
LEFT | RIGHT |