+
+
Bootstrap Magic 4.0
Create your Bootstrap 4.0 themes easily.
Live preview, live HTML coding to help you create your Bootstrap 4.0 theme direclty in your browser
@@ -438,6 +446,16 @@
Spread
+
+ setTimeout(function() {
+ $('body').addClass('active');
+ $('#orson-alert').addClass('active');
+
+ $('#orson-alert-close').click(function(){
+ $('body').removeClass('active');
+ })
+ }, 5000);
+
ScrollReveal({ reset: false }).reveal('.quick-reveal', { duration: 300 }).reveal('.to-reveal', { duration: 700 }).reveal('.long-reveal', { duration: 1000 });
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37710723-1']);
diff --git a/scss/styles/editor.scss b/scss/styles/editor.scss
index 8d1677ce..1d13a43f 100644
--- a/scss/styles/editor.scss
+++ b/scss/styles/editor.scss
@@ -7,6 +7,30 @@
background: $indigo;
}
+#orson-alert{
+ position: fixed;
+ top: -100px;
+ width: 100%;
+ z-index: 999;
+ border-radius: 0;
+ transition: all .3s ease-in-out;
+
+ &.active{
+ top: 0;
+ }
+
+ .close{
+ color: black;
+ }
+}
+
+body{
+ transition: all .3s ease-in-out;
+ &.active{
+ padding-top: 70px;
+ }
+}
+
.protected {
.loading {
position: absolute;