Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/yursan9/manis-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorYurizal Susanto <rizal.sagi@gmail.com>2017-06-24 03:54:31 +0300
committerYurizal Susanto <rizal.sagi@gmail.com>2017-06-24 03:54:31 +0300
commit90e3c6a0db1b921590be47e976151b548c35cea7 (patch)
tree0ce879fc6424d211b529e170917f2f0e4fe6aa66 /static
parenteed93702eaed4d1cdaff5c3300a55eff058d4278 (diff)
Add class to hide element in mobile screen
Diffstat (limited to 'static')
-rw-r--r--static/css/ui.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/static/css/ui.css b/static/css/ui.css
index 5bee986..e95b0ea 100644
--- a/static/css/ui.css
+++ b/static/css/ui.css
@@ -512,6 +512,15 @@ footer p {
.u-pull-right { float: right; }
.u-pull-left { float: left; }
+.u-hide-mobile {
+ display: none;
+}
+@media (min-width: 40rem) {
+ .u-hide-mobile {
+ display: inline-block;
+ }
+}
+
.u-header {
margin-bottom: 1.5rem;
}