src/SiteBundle/Resources/views/Base/sabitCSS.html.twig line 1

Open in your IDE?
  1. <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" rel="stylesheet" type="text/css">
  2. <link href="{{ asset('assets/plugins/fancybox-master/dist/jquery.fancybox.min.css') }}" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" type="text/css">
  3. <link href="{{ asset('assets/animate.css') }}" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" type="text/css">
  4. <style>
  5.     .preloader{
  6.         position:fixed;
  7.         left:0px;
  8.         top:0px;
  9.         width:100%;
  10.         height:100%;
  11.         z-index:999999;
  12.         background-color:#ffffff;
  13.         background-position:center center;
  14.         background-repeat:no-repeat;
  15.         background-image:url("{{ asset('uploads/logo.png') }}");
  16.         background-size: 150px auto;
  17.     }
  18.     .pre_load{
  19.         position:fixed;
  20.         left:0px;
  21.         top:0px;
  22.         width:100%;
  23.         height:100%;
  24.         z-index:999999;
  25.         background-position:center 15%;
  26.         background-repeat:no-repeat;
  27.         background-image:url("{{ asset('assets/img/loading.svg') }}");
  28.         background-size: 80px auto;
  29.     }
  30.     .rv_language{
  31.         width: 252px;
  32.         height: auto;
  33.         top: 16%;
  34.         z-index: 10;
  35.         position: fixed;
  36.         right: -200px;
  37.         transition:0.5s all;
  38.     }
  39.     .rv_language:hover{
  40.         right: 0;
  41.     }
  42.     .rv_lang{
  43.         float: left;
  44.         width: 200px;
  45.         background: #323232;
  46.         padding: 10px;
  47.         padding-left: 20px;
  48.         border-radius:0 0 0 10px;
  49.         -webkit-box-shadow: 10px 10px 21px -14px rgba(0,0,0,0.75);
  50.         -moz-box-shadow: 10px 10px 21px -14px rgba(0,0,0,0.75);
  51.         box-shadow: 10px 10px 21px -14px rgba(0,0,0,0.75);
  52.         position: relative;
  53.         z-index: 2;
  54.         margin-left: 52px;
  55.     }
  56.     .rv_lang .lang_text{
  57.         font-size: 16px;
  58.         font-weight: bold;
  59.         color: #fff;
  60.     }
  61.     .rv_lang img{}
  62.     .rv_lang-icon{
  63.         position: absolute;
  64.         left: 0;
  65.         padding: 10px;
  66.         background: #323232;
  67.         border-radius:10px 0 0 10px;
  68.         -webkit-box-shadow: 10px 10px 33px -9px rgba(0,0,0,0.75);
  69.         -moz-box-shadow: 10px 10px 33px -9px rgba(0,0,0,0.75);
  70.         box-shadow: 10px 10px 33px -9px rgba(0,0,0,0.75);
  71.         animation-duration: 5s;
  72.         animation-delay: 5s;
  73.         animation-iteration-count: infinite;
  74.         width: 50%;
  75.         text-align: left;
  76.         z-index: 1;
  77.         /*! float: left; */
  78.     }
  79.     .rv_lang h4{
  80.         margin-top: 5px!important;
  81.         margin-bottom: 12px!important;
  82.     }
  83.     .rv_lang ul{
  84.         width:100%;
  85.         padding-left: 0!important;
  86.         margin-bottom: 0!important;
  87.     }
  88.     .rv_lang ul li{
  89.         width:100%;
  90.         padding:5px;
  91.         border-top:1px solid #3a3a3a;
  92.         color:#fff;
  93.         border-radius:5px;
  94.         list-style-type: none!important;
  95.     }
  96.     .rv_lang ul li a img{
  97.         margin-right: 5px;
  98.     }
  99.     .rv_lang ul li a{
  100.         color:#fff;
  101.         font-size: 14px;
  102.         text-decoration: none!important;
  103.     }
  104.     .rv_lang ul li:hover{
  105.         background:#585858;
  106.     }
  107.     iframe{
  108.         width: 100%;
  109.     }
  110.     input:focus{
  111.         outline: none!important;
  112.         box-shadow: none!important;
  113.     }
  114.     textarea:focus{
  115.         outline: none!important;
  116.         box-shadow: none!important;
  117.     }
  118.     .formBtn{
  119.         padding: 10px 20px;
  120.         float: right;
  121.         border: 2px solid #323232;
  122.         font-size: 15px;
  123.         color: #fff;
  124.         background-color: #323232;
  125.         cursor: pointer;
  126.         margin-top: 10px;
  127.         border-radius: 10px;
  128.     }
  129.     .formBtn:hover{
  130.         background-color: #fff;
  131.         color: #323232;
  132.     }
  133.     .formBtn:focus{
  134.         outline: none!important;
  135.     }
  136.     .alert{
  137.         position: relative;
  138.         padding: .75rem 1.25rem;
  139.         margin-bottom: 1rem;
  140.         border: 1px solid transparent;
  141.         border-radius: .25rem;
  142.     }
  143.     .alert-danger{
  144.         color: #721c24;
  145.         background-color: #f8d7da;
  146.         border-color: #f5c6cb;
  147.     }
  148. </style>