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

github.com/aerohub/hugo-identity-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Grosser <development@stp-ip.net>2017-09-15 20:02:57 +0300
committerGitHub <noreply@github.com>2017-09-15 20:02:57 +0300
commitd484f239dd2229c631b50b5f645726fe5598e9f9 (patch)
tree30b338600639a0cfc49ee55ea8972f337f6de8b6
parent29b8e15f4150b8c08d5baa8c625a120ebdf341f5 (diff)
parent90f7388be48674b28f4ea500fc75edffcc7b086d (diff)
Merge pull request #27 from aerohub/fixWhiteBar
Fix body height
-rw-r--r--static/assets/css/main.css6
-rw-r--r--static/assets/css/page.css60
-rw-r--r--static/images/backgrounds/bg1.jpgbin11383 -> 0 bytes
-rw-r--r--static/images/backgrounds/bg2.jpgbin25424 -> 0 bytes
-rw-r--r--static/images/backgrounds/bg3.jpgbin123221 -> 0 bytes
-rw-r--r--static/images/backgrounds/bg4.pngbin45154 -> 0 bytes
6 files changed, 11 insertions, 55 deletions
diff --git a/static/assets/css/main.css b/static/assets/css/main.css
index 93ec2ed..8b735ac 100644
--- a/static/assets/css/main.css
+++ b/static/assets/css/main.css
@@ -536,12 +536,6 @@ button,
#main .avatar:before {
left: -2em;
width: calc(100% + 4em); } }
- body.is-loading #main {
- opacity: 0;
- -moz-transform: rotateX(15deg);
- -webkit-transform: rotateX(15deg);
- -ms-transform: rotateX(15deg);
- transform: rotateX(15deg); }
/* Footer */
#footer {
diff --git a/static/assets/css/page.css b/static/assets/css/page.css
index 75a69cb..34cba0b 100644
--- a/static/assets/css/page.css
+++ b/static/assets/css/page.css
@@ -1,54 +1,16 @@
-/* Basic */
-@media screen {
- html, body {
- min-width: 320px; } }
-body.is-loading *, body.is-loading *:before, body.is-loading *:after {
- -moz-animation: none !important;
- -webkit-animation: none !important;
- -ms-animation: none !important;
- animation: none !important;
- -moz-transition: none !important;
- -webkit-transition: none !important;
- -ms-transition: none !important;
- transition: none !important; }
-
html {
- height: 100%; }
+ height: 100vh;
+}
body {
- height: 100%;
+ height: 100vh;
+ margin: 0;
+ background-attachment: fixed;
background-color: #ffffff;
- background-image: url("images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)), url("../../images/backgrounds/bg1.jpg");
- background-image: url("images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)), url("../../images/backgrounds/bg1.jpg");
- background-image: url("images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)), url("../../images/backgrounds/bg1.jpg");
- background-image: url("images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)), url("../../images/backgrounds/bg1.jpg");
- background-repeat: repeat, no-repeat, no-repeat;
- background-size: 100px 100px, cover, cover;
- background-position: top left, center center, bottom center;
- background-attachment: fixed, fixed, fixed; }
- body:after {
- content: '';
- display: block;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: inherit;
- opacity: 0;
- z-index: 1;
- background-color: #ffffff;
- background-image: url("images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
- background-image: url("images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
- background-image: url("images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
- background-image: url("images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
- background-repeat: repeat, no-repeat;
- background-size: 100px 100px, cover;
- background-position: top left, center center;
- -moz-transition: opacity 1.75s ease-out;
- -webkit-transition: opacity 1.75s ease-out;
- -ms-transition: opacity 1.75s ease-out;
- transition: opacity 1.75s ease-out; }
- body.is-loading:after {
- opacity: 1; }
+ background-image: url("images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
+ background-image: url("images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
+ background-image: url("images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
+ background-image: url("images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
+
+}
-/*# sourceMappingURL=page.css.map */
diff --git a/static/images/backgrounds/bg1.jpg b/static/images/backgrounds/bg1.jpg
deleted file mode 100644
index 03a7991..0000000
--- a/static/images/backgrounds/bg1.jpg
+++ /dev/null
Binary files differ
diff --git a/static/images/backgrounds/bg2.jpg b/static/images/backgrounds/bg2.jpg
deleted file mode 100644
index 5acaaa8..0000000
--- a/static/images/backgrounds/bg2.jpg
+++ /dev/null
Binary files differ
diff --git a/static/images/backgrounds/bg3.jpg b/static/images/backgrounds/bg3.jpg
deleted file mode 100644
index 7ee2c69..0000000
--- a/static/images/backgrounds/bg3.jpg
+++ /dev/null
Binary files differ
diff --git a/static/images/backgrounds/bg4.png b/static/images/backgrounds/bg4.png
deleted file mode 100644
index d010176..0000000
--- a/static/images/backgrounds/bg4.png
+++ /dev/null
Binary files differ