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

github.com/blankoworld/hugo_theme_adam_eve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier DOSSMANN <olivier+git@dossmann.net>2018-02-26 13:33:20 +0300
committerOlivier DOSSMANN <olivier+git@dossmann.net>2018-02-26 13:33:20 +0300
commit4fcf63f3e2e47d6305d17bae6b9d400bfc5f94cf (patch)
tree488a7a5e895c92550fdc943f27d9b8e9dfd8c7dd
parent016e4ba9b574a969fa61b9878aa8fa2a6093c870 (diff)
Reduce screen resolution when display larger than 960px
-rw-r--r--static/css/main.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 3ed5f4f..bdfe189 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -105,3 +105,10 @@ div.normal {
background-color: #eef;
background-image: url("/img/note.png");
}
+
+@media (min-width: 960px) {
+ html, body {
+ width: 960px;
+ margin: 0 auto;
+ }
+}