BotanJS/botanjs/src/Astro/Blog/Components/Entry/List.css
2015-08-14 21:06:23 +08:00

68 lines
836 B
CSS

.list_entry {
position: relative;
margin: 1em 0;
padding: 0.5em;
background-color: #FAFAFA;
border: 1px solid #D4D7C9;
}
.caption {
font-size: 2.5em;
color: #444;
}
.title {
font-size: 1.5em;
color: #555;
}
.content {
color: #777;
}
.tags {
padding: 0.5em 0;
}
.flag {
font-family: custom-sans;
font-size: 0.8em;
padding: 0 0.5em;
margin: 0 0 0 0.2em;
float: right;
cursor: default;
}
.flag.archived { color: white; background: #888; }
.flag.archived:hover { background: #666; }
.flag.featured { color: white; background: coral; }
.flag.featured:hover { background: orangered; }
.tag {
color: #76400C;
padding: 0.2em 0.5em;
font-family: custom-sans;
}
.mdate, .author {
text-align: right;
}
.author {
color: crimson;
}
.mdate {
color: #AAA;
font-size: 0.8em;
font-family: custom-sans;
}