mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
76 lines
1.0 KiB
SCSS
76 lines
1.0 KiB
SCSS
.no-sidebar .content-container.size3of4 {
|
|
width: 75%;
|
|
}
|
|
|
|
.blog-entry .post-image img {
|
|
width: 98.75%;
|
|
}
|
|
|
|
.blog-sidebar .WidgetHolder ul {
|
|
margin-left: 0;
|
|
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
}
|
|
|
|
// tag cloud related
|
|
$baseTagFontSize:4pt;
|
|
|
|
ul.blogTagCloud {
|
|
list-style-type: none;
|
|
clear: both;
|
|
|
|
li {
|
|
float: left;
|
|
display: inline;
|
|
padding-right: 8px;
|
|
|
|
a span {
|
|
float: left;
|
|
line-height: 30px; text-align: center;
|
|
padding: 0px;
|
|
}
|
|
}
|
|
|
|
.tagCount10 {
|
|
font-size: $baseTagFontSize+22pt;
|
|
}
|
|
|
|
.tagCount9 {
|
|
font-size: $baseTagFontSize+20pt;
|
|
}
|
|
|
|
.tagCount8 {
|
|
font-size: $baseTagFontSize+18pt;
|
|
}
|
|
|
|
.tagCount7 {
|
|
font-size: $baseTagFontSize+16pt;
|
|
}
|
|
|
|
.tagCount6 {
|
|
font-size: $baseTagFontSize+14pt;
|
|
}
|
|
|
|
.tagCount5 {
|
|
font-size: $baseTagFontSize+12pt;
|
|
}
|
|
|
|
.tagCount4 {
|
|
font-size: $baseTagFontSize+10pt;
|
|
}
|
|
|
|
.tagCount3 {
|
|
font-size: $baseTagFontSize+8pt;
|
|
}
|
|
|
|
.tagCount2 {
|
|
font-size: $baseTagFontSize+6pt;
|
|
}
|
|
|
|
.tagCount1 {
|
|
font-size: $baseTagFontSize+4pt;
|
|
}
|
|
}
|