FIX: mobile logo was too wide

This commit is contained in:
Jeff Atwood 2015-10-19 23:02:32 -07:00
parent 50d2ba5f8e
commit 722cce7400
2 changed files with 18 additions and 6 deletions

View File

@ -5,12 +5,12 @@
.d-header {
#site-logo {
max-width: 155px;
max-width: 130px;
}
// some protection for text-only site titles
.title {
max-width: 160px;
max-width: 130px;
height: 39px;
overflow: hidden;
padding: 0;

View File

@ -140,6 +140,7 @@
.posts {
width: 10%;
vertical-align: top;
}
.age {
@ -236,10 +237,15 @@ tr.category-topic-link {
font-size: 110%;
}
.category-topic-link .num {
white-space: nowrap;
.number {
font-size: 1.071em;
.category-topic-link {
.num {
white-space: nowrap;
.number {
font-size: 1.071em;
}
}
.topic-excerpt {
width: 110%;
}
}
@ -404,4 +410,10 @@ td .main-link {
font-size: 1.071em;
padding-top: 2px;
}
// so the topic excerpt is full width
// as the containing div is 80%
.topic-excerpt {
padding-right: 0;
width: 120%;
}
}