You are here

splashify.css in Splashify 8.2

/* ==========================================================================
   Splash page component
   ========================================================================== */
.splash-wrapper {
    background-color: #FFF;
    background-size: cover;
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    width: 100%;
    display: none;
    overflow: hidden;
    z-index: 100;
}

.splash-wrapper div {
    z-index: 200;
    position: relative;
}

.splash-inner {
    text-align: center;
    padding: 0 1.5rem;
}

@media screen and (min-width: 1025px) {
    .splash-inner {
        margin: 0 auto;
        padding: 0;
        width: 750px;
    }
}

File

css/splashify.css
View source
  1. /* ==========================================================================
  2. Splash page component
  3. ========================================================================== */
  4. .splash-wrapper {
  5. background-color: #FFF;
  6. background-size: cover;
  7. position: absolute;
  8. top: 0;
  9. height: 0;
  10. left: 0;
  11. width: 100%;
  12. display: none;
  13. overflow: hidden;
  14. z-index: 100;
  15. }
  16. .splash-wrapper div {
  17. z-index: 200;
  18. position: relative;
  19. }
  20. .splash-inner {
  21. text-align: center;
  22. padding: 0 1.5rem;
  23. }
  24. @media screen and (min-width: 1025px) {
  25. .splash-inner {
  26. margin: 0 auto;
  27. padding: 0;
  28. width: 750px;
  29. }
  30. }