LEFT | RIGHT |
1 #content | 1 #content |
2 { | 2 { |
3 text-align: center; | 3 text-align: center; |
4 margin-left: 0; | 4 margin-left: 0; |
5 margin-right: 0; | 5 margin-right: 0; |
6 } | 6 } |
7 | 7 |
8 #abb-banner | 8 #abb-banner |
9 { | 9 { |
10 padding: 20px; | 10 padding: 20px; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 text-align: left; | 78 text-align: left; |
79 } | 79 } |
80 | 80 |
81 html[dir="rtl"] #key-facts section | 81 html[dir="rtl"] #key-facts section |
82 { | 82 { |
83 padding-right: 80px; | 83 padding-right: 80px; |
84 padding-left: 0px; | 84 padding-left: 0px; |
85 text-align: right; | 85 text-align: right; |
86 } | 86 } |
87 | 87 |
| 88 #edge-subscription button[type=submit], #edge-subscription input[type=email] |
| 89 { |
| 90 webkit-box-sizing: border-box; |
| 91 -moz-box-sizing: border-box; |
| 92 -ms-box-sizing: border-box; |
| 93 -o-box-sizing: border-box; |
| 94 box-sizing: border-box; |
| 95 width: 100%; |
| 96 } |
| 97 |
| 98 #edge-teaser |
| 99 { |
| 100 display: none; |
| 101 } |
| 102 |
88 #key-facts section.border-right | 103 #key-facts section.border-right |
89 { | 104 { |
90 padding-bottom: 25px; | 105 padding-bottom: 25px; |
91 border-bottom: 1px dotted black; | 106 border-bottom: 1px dotted black; |
92 } | 107 } |
93 | 108 |
94 #more, #less | 109 #more, #less |
95 { | 110 { |
96 padding: 10px 50px; | 111 padding: 10px 50px; |
97 border-radius: 4px; | 112 border-radius: 4px; |
98 } | 113 } |
99 | 114 |
100 #sidebar | 115 #sidebar |
101 { | 116 { |
102 padding-top: 20px; | 117 padding-top: 20px; |
103 } | 118 } |
104 | 119 |
105 .more-tab | 120 .more-tab |
106 { | 121 { |
107 text-align: left; | 122 text-align: left; |
108 margin: 10px 10px 0px 10px; | 123 margin: 10px 10px 0px 10px; |
109 } | 124 } |
110 | |
111 #edge-subscription button[type=submit], #edge-subscription input[type=email] | |
112 { | |
113 webkit-box-sizing: border-box; | |
114 -moz-box-sizing: border-box; | |
115 -ms-box-sizing: border-box; | |
116 -o-box-sizing: border-box; | |
117 box-sizing: border-box; | |
118 width: 100%; | |
119 } | |
120 | |
121 #edge-teaser | |
122 { | |
123 display: none; | |
124 } | |
LEFT | RIGHT |