Author: bobharner
Date: Sat May 2 17:45:48 2020
New Revision: 1060096
Log:
TAP5-2623: Remove page gutters for mobile (from pico.dev)
Modified:
websites/production/tapestry/content/styles/main.css
websites/production/tapestry/content/styles/main.less
Modified: websites/production/tapestry/content/styles/main.css
==============================================================================
--- websites/production/tapestry/content/styles/main.css (original)
+++ websites/production/tapestry/content/styles/main.css Sat May 2 17:45:48
2020
@@ -8,6 +8,9 @@ body {
body > div > p {
display: none;
}
+body > div > br[clear="none"] {
+ display: none;
+}
header {
color: white;
background-color: black;
@@ -126,6 +129,12 @@ article .container img {
max-width: 100%;
height: auto;
}
+@media (max-width: 1345px) {
+ article .container-fluid {
+ padding-left: 0px;
+ padding-right: 0px;
+ }
+}
.text-small {
font-size: 0.85rem;
}
Modified: websites/production/tapestry/content/styles/main.less
==============================================================================
--- websites/production/tapestry/content/styles/main.less (original)
+++ websites/production/tapestry/content/styles/main.less Sat May 2 17:45:48
2020
@@ -71,6 +71,10 @@ body > div > p {
display: none;
}
+body > div > br[clear="none"] {
+ display: none;
+}
+
header {
color: white;
background-color: black;
@@ -209,6 +213,16 @@ article {
img {
max-width: 100%;
+ height: auto;
+ }
+ }
+}
+
+@media (max-width: 1345px) {
+ article {
+ .container-fluid {
+ padding-left: 0px;
+ padding-right: 0px;
}
}
}