app/css/listing.css in servel-0.21.0 vs app/css/listing.css in servel-0.22.0
- old
+ new
@@ -1,16 +1,37 @@
#listing {
+ display: none;
padding: 10px;
- position: relative;
- z-index: 1;
background-color: #fff;
}
+body.listing #listing {
+ display: block;
+}
+
+#header {
+ display: flex;
+}
+
#listing h1 {
margin-top: 0;
+ margin-bottom: 20px;
}
+#title {
+ flex-grow: 1;
+}
+
+#jump-gallery-wrapper {
+ display: none;
+ padding-left: 20px;
+}
+
+body.has-gallery #jump-gallery-wrapper {
+ display: block;
+}
+
#search-wrapper {
text-align: right;
margin-bottom: 20px;
}
@@ -93,6 +114,12 @@
text-align: center;
}
a.default.home, a.default.top, a.default.parent {
font-style: oblique;
+}
+
+@media screen and (max-width: 767px) {
+ #listing h1 {
+ font-size: 20px;
+ }
}