Advertisement
Guest User

SCSS

a guest
Dec 14th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 2.09 KB | None | 0 0
  1. page-login {
  2.     .toolbar-background,
  3.     ion-navbar,
  4.     ion-header {
  5.       background: transparent !important;
  6.       background-color: transparent !important;
  7.       border: none !important;
  8.     }
  9.  
  10.     // Fullscreen centered image background
  11.    > ion-content {
  12.       // background-size: cover;
  13.       // background-position: center;
  14.       // background-repeat: no-repeat;
  15.       // border-color: transparent;
  16.       background: linear-gradient(316deg, #76CC81, #3E657A, #247BA0, #f53d3d, #39466B,#5973BF, #008000);
  17.       background-size: 1800% 1800%;
  18.       animation: rainbow 20s linear infinite;
  19.     }
  20.  
  21.     .content{
  22.       background-color: inherit;
  23.     }
  24.  
  25.     @keyframes rainbow {
  26.       0% {
  27.         background-position: 0% 0%
  28.       }
  29.       50% {
  30.         background-position: 100% 100%
  31.       }
  32.       100% {
  33.         background-position: 0% 0%
  34.       }
  35.     }
  36.  
  37.     .body{
  38.       height: 100%;
  39.     }
  40.  
  41.     // Slider
  42.     .content-slider {
  43.       ion-slides,
  44.       .swiper-container {
  45.         height: 100%;
  46.         width: auto;
  47.       }
  48.     }
  49.  
  50.     .text-slider {
  51.       ion-slide,
  52.       .swiper-container {
  53.         height: 20vh !important;
  54.         width: auto;
  55.       }
  56.     }
  57.  
  58.     .zoom .slide-zoom {
  59.       height: 100%;
  60.       margin-top: 40%;
  61.     }
  62.  
  63.     // Content
  64.     .scroll-content {
  65.       display: flex;
  66.       flex-direction: column;
  67.       overflow: hidden;
  68.     }
  69.  
  70.     .logo {
  71.       width: 100px;
  72.       height: auto;
  73.       margin: 0 auto;
  74.       padding-bottom: 10%;
  75.     }
  76.  
  77.     p{
  78.       font-size: 1.6rem;
  79.     }
  80.  
  81.     span,
  82.     p,
  83.     h3,h1 {
  84.       color: white;
  85.     }
  86.  
  87.     h1,h3{
  88.       font-weight: 300;
  89.     }
  90.  
  91.     // Input items
  92.     ion-label[floating]{
  93.       color: #ccc;
  94.     }
  95.  
  96.     ion-item {
  97.       border-radius: 3px !important;
  98.       color: #fff !important;
  99.       background-color: transparent !important;
  100.       font-size: 0.9em;
  101.     }
  102.  
  103.     ion-input, ::-webkit-input-placeholder {
  104.       color: white !important;
  105.     }
  106.    
  107.     .item-inner {
  108.       border-bottom: 2px solid white !important;
  109.       box-shadow: none !important;
  110.     }
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement