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

github.com/fncnt/vncnt-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfncnt <github@vncnt.eu>2019-03-28 11:49:58 +0300
committerfncnt <github@vncnt.eu>2019-03-28 11:49:58 +0300
commite7360b3f8e09f88d7bcd9f4c8cc357bd55ca2b03 (patch)
tree2e748d4aa011906155685b7d4e5d2d9393d023a3
parent045c419c440a0534842e036eb961ea6d42e2da66 (diff)
Update @media query breakpoints.
-rw-r--r--static/css/vncnt.css18
1 files changed, 6 insertions, 12 deletions
diff --git a/static/css/vncnt.css b/static/css/vncnt.css
index 885a58e..8c224e9 100644
--- a/static/css/vncnt.css
+++ b/static/css/vncnt.css
@@ -16,7 +16,7 @@ near the relevant code. For example, if you wanted to change the styles for butt
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
-@import url('skeleton.css');
+@import url('barebones.css');
.landingpage, .error404 {
position: absolute;
@@ -64,11 +64,8 @@ p.reset-margin {
color: #555555;
}
-/* Larger than mobile */
-@media (min-width: 400px) {}
-
-/* Larger than phablet (also point when grid becomes active) */
-@media (min-width: 550px) {
+/* Larger than mobile (default point when grid becomes active) */
+@media (min-width: 600px) {
.landingpage, .error404 {
position: absolute;
top: 50%;
@@ -88,11 +85,8 @@ p.reset-margin {
text-align: left;
}}
-/* Larger than tablet */
-@media (min-width: 750px) {}
-
-/* Larger than desktop */
-@media (min-width: 1000px) {}
+/* Larger than phablet */
+@media (min-width: 900px) {}
-/* Larger than Desktop HD */
+/* Larger than tablet */
@media (min-width: 1200px) {}