OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>Inspectable pages</title> | 3 <title>Inspectable pages</title> |
4 <style> | 4 <style> |
5 body { | 5 body { |
6 color: #222; | 6 color: #222; |
7 font-family: Helvetica, Arial, sans-serif; | 7 font-family: Helvetica, Arial, sans-serif; |
8 margin: 0; | 8 margin: 0; |
9 text-shadow: rgba(255, 255, 255, 0.496094) 0px 1px 0px; | 9 text-shadow: rgba(255, 255, 255, 0.496094) 0px 1px 0px; |
10 } | 10 } |
(...skipping 14 matching lines...) Expand all Loading... |
25 } | 25 } |
26 | 26 |
27 .item { | 27 .item { |
28 color: #222; | 28 color: #222; |
29 display: flex; | 29 display: flex; |
30 flex-direction: row; | 30 flex-direction: row; |
31 text-decoration: none; | 31 text-decoration: none; |
32 padding: 10px; | 32 padding: 10px; |
33 -webkit-transition-property: background-color, border-color; | 33 -webkit-transition-property: background-color, border-color; |
34 -webkit-transition: background-color 0.15s, 0.15s; | 34 -webkit-transition: background-color 0.15s, 0.15s; |
35 -webkit-transition-delay: 0, 0; | 35 -webkit-transition-delay: 0ms, 0ms; |
36 } | 36 } |
37 | 37 |
38 .thumbnail { | 38 .thumbnail { |
39 background-attachment: scroll; | 39 background-attachment: scroll; |
40 background-origin: padding-box; | 40 background-origin: padding-box; |
41 background-repeat: no-repeat; | 41 background-repeat: no-repeat; |
42 border: 1px solid rgba(184, 184, 184, 1); | 42 border: 1px solid rgba(184, 184, 184, 1); |
43 flex: none; | 43 flex: none; |
44 height: 132px; | 44 height: 132px; |
45 width: 212px; | 45 width: 212px; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 } | 150 } |
151 </script> | 151 </script> |
152 </head> | 152 </head> |
153 <body onload='onLoad()'> | 153 <body onload='onLoad()'> |
154 <div id='caption'>Inspectable pages</div> | 154 <div id='caption'>Inspectable pages</div> |
155 <hr> | 155 <hr> |
156 <div id='items'> | 156 <div id='items'> |
157 </div> | 157 </div> |
158 </body> | 158 </body> |
159 </html> | 159 </html> |
OLD | NEW |