diff --git a/src/assets/css/options_page.css b/src/assets/css/options_page.css index 8256b367..0ded3792 100644 --- a/src/assets/css/options_page.css +++ b/src/assets/css/options_page.css @@ -41,6 +41,57 @@ input, textarea { font-family: Raleway, Menlo, "Dank Mono", Inconsolata, "Operator Mono", Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace!important; } +.loading { + position: fixed; + top: 0; + left: 0; + + display: flex; + justify-content: center; + align-items: center; + + height: 100%; + width: 100%; + + background-color: #fafafa; + + z-index: 200; +} + +.animated { + animation-duration: 1s; + animation-fill-mode: both; + animation-iteration-count: infinite; +} + +.heartBeat { + animation-name: heartBeat; + animation-duration: 1.3s; + animation-timing-function: ease-in-out; +} + +@keyframes heartBeat { + 0% { + transform: scale(1); + } + + 14% { + transform: scale(1.3); + } + + 28% { + transform: scale(1); + } + + 42% { + transform: scale(1.3); + } + + 70% { + transform: scale(1); + } +} + .topnav { position: fixed; z-index: 200; @@ -151,6 +202,9 @@ input, textarea { color: var(--secondary-color); font-size: 1.3rem; + + opacity: 1; + transition: all .25s ease-out; } .welcome { diff --git a/src/options/options.html b/src/options/options.html index ef08b8bd..a9967220 100644 --- a/src/options/options.html +++ b/src/options/options.html @@ -4,8 +4,12 @@