| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <import src="../resources/dump-as-render-tree.sky" /> | 4 <import src="../resources/dump-as-render-tree.sky" /> |
| 5 <title>Adam Barth</title> | 5 <title>Adam Barth</title> |
| 6 <style> | 6 <style> |
| 7 html { | 7 html { |
| 8 overflow: hidden; | 8 overflow: hidden; |
| 9 height: 100%; | 9 height: 100%; |
| 10 } | 10 } |
| 11 | 11 |
| 12 body { | 12 body { |
| 13 height: 100%; | 13 height: 100%; |
| 14 background-color: white; | 14 background-color: white; |
| 15 margin: 0; | 15 margin: 0; |
| 16 font-family: Arial, Helvetica, sans-serif; | 16 font-family: Arial, Helvetica, sans-serif; |
| 17 background-repeat: no-repeat; | 17 background-repeat: no-repeat; |
| 18 background-position: center top; | 18 background-position: center top; |
| 19 background-size: cover; | 19 background-size: cover; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .line, |
| 23 .link, |
| 24 .name, |
| 25 .photograph-credit { |
| 26 display: paragraph; |
| 27 } |
| 28 |
| 22 .photograph-credit { | 29 .photograph-credit { |
| 23 position: absolute; | 30 position: absolute; |
| 24 right: 0; | 31 right: 0; |
| 25 bottom: 0; | 32 bottom: 0; |
| 26 padding: 3px; | 33 padding: 3px; |
| 27 font-size: 8pt; | 34 font-size: 8pt; |
| 28 color: #333; | 35 color: #333; |
| 29 } | 36 } |
| 30 | 37 |
| 31 a { | 38 a { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 <div class="link"><a href="http://dev.chromium.org/blink">Blink</a></div> | 77 <div class="link"><a href="http://dev.chromium.org/blink">Blink</a></div> |
| 71 <div class="link"><a href="http://blog.chromium.org/">Chromium</a></div> | 78 <div class="link"><a href="http://blog.chromium.org/">Chromium</a></div> |
| 72 <div class="link"><a href="papers/">Publications</a></div> | 79 <div class="link"><a href="papers/">Publications</a></div> |
| 73 </div> | 80 </div> |
| 74 </div> | 81 </div> |
| 75 <div class="photograph-credit"> | 82 <div class="photograph-credit"> |
| 76 Photograph by <a href="http://www.flickr.com/photos/lesphotosdejerome/">Jérôme</
a> | 83 Photograph by <a href="http://www.flickr.com/photos/lesphotosdejerome/">Jérôme</
a> |
| 77 </div> | 84 </div> |
| 78 </body> | 85 </body> |
| 79 </html> | 86 </html> |
| OLD | NEW |