浏览代码

code aded

sachinganesh 2 年前
父节点
当前提交
aff8c9c026
共有 3 个文件被更改,包括 66 次插入11 次删除
  1. 4
    0
      styles/base/_utilities.scss
  2. 1
    0
      styles/pages/_home.scss
  3. 61
    11
      styles/style.scss

+ 4
- 0
styles/base/_utilities.scss 查看文件

@@ -118,6 +118,10 @@
118 118
 .padding_top_13{
119 119
   padding-top: 13rem; 
120 120
 }
121
+
122
+.padding_bottom_ONE_FIVE{
123
+  padding-bottom: 1.5rem;
124
+}
121 125
 // heights
122 126
 
123 127
 .h-10{

+ 1
- 0
styles/pages/_home.scss 查看文件

@@ -272,6 +272,7 @@ justify-content: center !important;
272 272
 
273 273
 [alt=footer-rocket-img]{
274 274
     cursor: pointer;
275
+    width: 70px;
275 276
 }
276 277
 .partners-img{
277 278
     height:60px;

+ 61
- 11
styles/style.scss 查看文件

@@ -266,17 +266,6 @@ $background-color_2: #fff;
266 266
                 margin-top: 0;
267 267
         }
268 268
         }
269
-        .owl-carousel {
270
-        .owl-dots{
271
-            display: none;
272
-             }
273
-        .owl-item {
274
-    //    h6 {
275
-    //         text-align: left !important;
276
-    //        }
277
-          
278
-        }
279
-        }
280 269
     }
281 270
     .navbar-toggler {
282 271
         color: $color_1;
@@ -318,6 +307,49 @@ $background-color_2: #fff;
318 307
         }
319 308
     }
320 309
 }
310
+@media (max-width:991px) {
311
+    #navbar-head{
312
+        .accordion-button:not(.collapsed){
313
+            background-color: #fff;
314
+            color:rgb(0, 0, 0);
315
+            box-shadow: none;
316
+            font-weight: bold;
317
+        }
318
+        .accordion-button{
319
+            font-family: "Satoshi", sans-serif;   
320
+        }
321
+        .accordion-body {
322
+            ul{
323
+                li{
324
+                font-size: 1rem;
325
+                  font-family: "Satoshi", sans-serif;   
326
+                  color: #635c5c;   
327
+                  line-height: 2.5rem;
328
+                }
329
+            }
330
+        }
331
+        .accordion-button:focus{
332
+            // border-color:#ffffff00;
333
+            box-shadow:none
334
+        }
335
+        .accordion-button::after {
336
+            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
337
+            transform: scale(.7) !important;
338
+          }
339
+          .accordion-button:not(.collapsed)::after {
340
+            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
341
+          }
342
+    }
343
+    .delivery-to-sec{
344
+       .d-flex{
345
+        font-size: 0.7rem;
346
+       }
347
+       .button_dark{
348
+        font-size: 0.7rem;
349
+       }
350
+    }
351
+    
352
+}
321 353
 #footer-head{
322 354
     .accordion-item{
323 355
         border: 1px solid;
@@ -327,3 +359,21 @@ $background-color_2: #fff;
327 359
     }
328 360
    
329 361
 }
362
+
363
+// footer 
364
+.footer-socailImg{
365
+    width: 30px;
366
+}
367
+
368
+.footer-rkt:hover{
369
+    animation: rocketRotate 2s;
370
+}
371
+
372
+@keyframes rocketRotate {
373
+    from {
374
+        transform: rotate(0);
375
+    }
376
+    to {
377
+        transform: rotate(360deg);
378
+    }
379
+  }

正在加载...
取消
保存