mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-14 11:26:26 +00:00
62 lines
949 B
CSS
62 lines
949 B
CSS
|
|
.tiles_container {
|
|
position: relative;
|
|
}
|
|
|
|
/**
|
|
* Grid container
|
|
*/
|
|
.tiles {
|
|
list-style-type: none;
|
|
position: relative; /** Needed to ensure items are laid out relative to this container **/
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/**
|
|
* Grid items
|
|
*/
|
|
.tiles li {
|
|
background-color: #ffffff;
|
|
border: 1px solid #dedede;
|
|
border-radius: 2px;
|
|
-moz-border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
display: none; /** Hide items initially to avoid a flicker effect **/
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
}
|
|
|
|
.tiles li.inactive {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
}
|
|
|
|
.tiles li img {
|
|
display: block;
|
|
}
|
|
|
|
.large_tile {
|
|
max-width: 252px;
|
|
}
|
|
|
|
/**
|
|
* Grid item text
|
|
*/
|
|
.tiles li p {
|
|
color: #666;
|
|
font-size: 12px;
|
|
margin: 7px 0 0 7px;
|
|
}
|
|
|
|
/**
|
|
* Placerholder css
|
|
*/
|
|
.wookmark-placeholder {
|
|
border-radius: 2px;
|
|
-moz-border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
background-color: #eee;
|
|
border: 1px solid #dedede;
|
|
z-index: -1;
|
|
} |