OLD | NEW |
1 /* Using 100% width within body should exclude margins. */ | 1 /* Using 100% width within body should exclude margins. */ |
2 body { | 2 body { |
3 bottom: 0; | 3 bottom: 0; |
4 left: 0; | 4 left: 0; |
5 position: absolute; | 5 position: absolute; |
6 right: 0; | 6 right: 0; |
7 top: 0; | 7 top: 0; |
| 8 margin: 8px 0px; |
8 } | 9 } |
9 | 10 |
10 .title { | 11 .title { |
11 display: inline-block; | 12 display: inline-block; |
12 font-weight: bold; | 13 font-weight: bold; |
13 padding-bottom: 2px; | 14 padding-bottom: 2px; |
14 padding-top: 15px; | 15 padding-top: 15px; |
15 } | 16 } |
16 | 17 |
17 #tabbox { | 18 #tabbox { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 top: 20%; | 84 top: 20%; |
84 } | 85 } |
85 | 86 |
86 #cert-field-value-section { | 87 #cert-field-value-section { |
87 bottom: 0; | 88 bottom: 0; |
88 height: 30%; | 89 height: 30%; |
89 } | 90 } |
90 | 91 |
91 .section-contents { | 92 .section-contents { |
92 -webkit-box-flex: 1; | 93 -webkit-box-flex: 1; |
93 border: 1px solid black; | 94 border: 1px solid #9e9e9e; |
94 /* Scrolling should be enabled on all tree views and value field. */ | 95 /* Scrolling should be enabled on all tree views and value field. */ |
95 overflow: auto; | 96 overflow: auto; |
96 } | 97 } |
| 98 |
| 99 #export { |
| 100 -webkit-margin-start: 1px; |
| 101 margin-top: 5px; |
| 102 } |
OLD | NEW |