Completely rewrote options script.

This commit is contained in:
Mario Basic
2015-06-17 17:48:48 +02:00
parent 2a1801c560
commit a4fe94ac75
15 changed files with 22640 additions and 213 deletions

View File

@@ -3,6 +3,7 @@
@import "bootswatch/paper/bootswatch";
@import "bootswatch/paper/variables";
@import "variables";
@import "partials/_animations";
body {
min-width: 357px;

View File

@@ -0,0 +1,17 @@
.alert-enter {
opacity: 0.01;
transition: opacity 1s ease-in;
}
.alert-enter.alert-enter-active {
opacity: 1;
}
.alert-leave {
opacity: 1;
transition: opacity 1s ease-in;
}
.alert-leave.alert-leave-active {
opacity: 0.01;
}