Page 3
by thebabydino
HTML
<h2>Visual Crypto</h2>
<section class='content'>
<article class='text'>
<p>What is visual crypto?</p>
<p>Lorem ipsum draci laci...</p>
</article>
<section class='two-col'>
<article class='col'>
<img src='http://img842.imageshack.us/img842/7524/albumm.jpg'>
</article>
<article class='col'>
<img src='http://img842.imageshack.us/img842/7524/albumm.jpg'>
</article>
</section>
</section>
CSS
html { color: #00a6d6; font: 100% Tahoma, Arial, sans-serif; }
html, body, header, section, article, aside, figure, figcaption, footer, h1, h2, ul, li { padding: 0; margin: 0; }
a { color: black; text-decoration: none; }
::-webkit-scrollbar {
width: .625em;
height: .625em;
}
::-webkit-scrollbar-thumb {
min-height: 1em;
min-width: 1em;
border-radius: .5em;
background: lightGrey;
}
::-webkit-scrollbar-thumb:hover {
background: #00a6d6;
}
::-webkit-scrollbar-track {
padding: .125em;
border-radius: .3125em;
background: dimGray;
}
h1, h2 {
padding: .5em;
text-align: center;
}
h1 {
font-size: 2em;
}
.content {
overflow: hidden;
position: relative;
min-width: 50em;
min-height: 30em;
}
aside {
float: left;
width: 25%;
}
aside li {
padding: .25em;
text-align: center;
}
.menulist, .menulist li {
padding: .25em;
margin: .25em;
border: solid 1px;
text-align: left;
}
.main {
padding: .25em;
margin-left: 25%;
}
footer { text-align: center; }
footer li {
display: inline-block;
min-width: 15em;
width: 30%;
max-width: 33.33%;
min-height: 3em;
padding: .5em 0;
margin: .25em;
background: whitesmoke;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: 200px 50px;
line-height: 3;
vertical-align: middle;
}
footer li:first-child {
background-image: url(http://isplab.tudelft.nl/sites/default/files/domain-7/mediamatica_logo.png);
}
footer li:last-child {
background-image: url(http://isplab.tudelft.nl/sites/all/themes/mediamatica/TU.png);
}
.gallery{ overflow-y: scroll; position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.gallery aside { position: fixed; }
.gallery figcaption, aside caption { padding: .25em; }
table{ margin: 0 auto; background: whitesmoke; }
th, td {
padding: .25em .5em;
box-shadow: 1px 1px 2px;
}
th {
font-weight: 700;
}
.gallery .main {
min-height: 30em;
...