OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <import src="../resources/dump-as-render-tree.sky" /> | |
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 .line, | |
23 .link, | |
24 .name, | |
25 .photograph-credit { | |
26 display: paragraph; | |
27 } | |
28 | |
29 .photograph-credit { | |
30 position: absolute; | |
31 right: 0; | |
32 bottom: 0; | |
33 padding: 3px; | |
34 font-size: 8pt; | |
35 color: #333; | |
36 } | |
37 | |
38 a { | |
39 color: #333; | |
40 } | |
41 | |
42 .name a { | |
43 text-decoration: none; | |
44 } | |
45 | |
46 .bio { | |
47 padding: 15px; | |
48 text-align: right; | |
49 } | |
50 | |
51 .name { | |
52 font-weight: bold; | |
53 font-size: 32pt; | |
54 } | |
55 | |
56 .links { | |
57 padding: 19px 0; | |
58 } | |
59 | |
60 .link { | |
61 padding: 5px 15px; | |
62 text-align: right; | |
63 } | |
64 </style> | |
65 </head> | |
66 <body> | |
67 <div class="card"> | |
68 <div class="bio"> | |
69 <div class="name"><a href="./">Adam Barth</a></div> | |
70 <div class="education"> | |
71 <div class="line">Ph.D., M.S., Stanford, 2008</div> | |
72 <div class="line">B.A., Cornell, 2003</div> | |
73 </div> | |
74 </div> | |
75 <div class="links"> | |
76 <div class="link"><a href="http://twitter.com/adambarth">@adambarth</a></div> | |
77 <div class="link"><a href="http://dev.chromium.org/blink">Blink</a></div> | |
78 <div class="link"><a href="http://blog.chromium.org/">Chromium</a></div> | |
79 <div class="link"><a href="papers/">Publications</a></div> | |
80 </div> | |
81 </div> | |
82 <div class="photograph-credit"> | |
83 Photograph by <a href="http://www.flickr.com/photos/lesphotosdejerome/">Jérôme</
a> | |
84 </div> | |
85 </body> | |
86 </html> | |
OLD | NEW |