mirror of https://github.com/perkeep/perkeep.git
22 lines
442 B
CSS
22 lines
442 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
/* http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
|
|
*, *:before, *:after {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.cam-index-page {
|
|
font: 16px/1.4 normal Arial, sans-serif;
|
|
/* It makes it easier to compute the layout of the aligned tiles if the
|
|
scrollbar is reliably on */
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.cam-index-title {
|
|
display: inline-block;
|
|
}
|