OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <link rel="import" href="../resources/dump-as-render-tree.html" /> | |
5 <title>Adam Barth</title> | |
6 <style> | |
7 html { | |
8 overflow: hidden; | |
9 height: 100%; | |
10 } | |
11 | |
12 body { | |
13 height: 100%; | |
14 background-color: white; | |
15 margin: 0; | |
16 font-family: Arial, Helvetica, sans-serif; | |
17 background-repeat: no-repeat; | |
18 background-position: center top; | |
19 background-size: cover; | |
20 } | |
21 | |
22 .photograph-credit { | |
23 position: absolute; | |
24 right: 0; | |
25 bottom: 0; | |
26 padding: 3px; | |
27 font-size: 8pt; | |
28 color: #333; | |
29 } | |
30 | |
31 a { | |
32 color: #333; | |
33 } | |
34 | |
35 .name a { | |
36 text-decoration: none; | |
37 } | |
38 | |
39 .bio { | |
40 padding: 15px; | |
41 text-align: right; | |
42 } | |
43 | |
44 .name { | |
45 font-weight: bold; | |
46 font-size: 32pt; | |
47 } | |
48 | |
49 .links { | |
50 padding: 19px 0; | |
51 } | |
52 | |
53 .link { | |
54 padding: 5px 15px; | |
55 text-align: right; | |
56 } | |
57 </style> | |
58 </head> | |
59 <body> | |
60 <div class="card"> | |
61 <div class="bio"> | |
62 <div class="name"><a href="./">Adam Barth</a></div> | |
63 <div class="education"> | |
64 <div class="line">Ph.D., M.S., Stanford, 2008</div> | |
65 <div class="line">B.A., Cornell, 2003</div> | |
66 </div> | |
67 </div> | |
68 <div class="links"> | |
69 <div class="link"><a href="http://twitter.com/adambarth">@adambarth</a></div> | |
70 <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> | |
72 <div class="link"><a href="papers/">Publications</a></div> | |
73 </div> | |
74 </div> | |
75 <div class="photograph-credit"> | |
76 Photograph by <a href="http://www.flickr.com/photos/lesphotosdejerome/">Jérôme</
a> | |
77 </div> | |
78 </body> | |
79 </html> | |
OLD | NEW |