|
| 1 | +html { |
| 2 | + scroll-behavior: smooth; |
| 3 | +} |
| 4 | + |
| 5 | +/* Apply color to all text */ |
| 6 | +body { |
| 7 | + color: #0a0c34; |
| 8 | +} |
| 9 | + |
| 10 | +/* LookinWeb */ |
| 11 | +.lookinweb-body-bg { |
| 12 | + height: 100%; |
| 13 | + margin: 0; |
| 14 | + background: linear-gradient( |
| 15 | + 335.98deg, |
| 16 | + rgba(198, 204, 236, 0.87) 8.5%, |
| 17 | + #a7cdc4 53.5%, |
| 18 | + #d8eee0 96.5% |
| 19 | + ); |
| 20 | + background-blend-mode: screen; |
| 21 | + background-repeat: no-repeat; |
| 22 | + background-attachment: fixed; |
| 23 | +} |
| 24 | + |
| 25 | +.lookinweb-navbar, |
| 26 | +#language-options { |
| 27 | + background: linear-gradient(0deg, #a6dddd 26%, #769494 100%); |
| 28 | + background-blend-mode: darken; |
| 29 | +} |
| 30 | + |
| 31 | +.lookinweb-footer { |
| 32 | + background: linear-gradient(0deg, #a6dddd, #a6dddd); |
| 33 | + background-blend-mode: darken; |
| 34 | +} |
| 35 | + |
| 36 | +.review-bg { |
| 37 | + background: linear-gradient(0deg, #dbf2f2, #dbf2f2); |
| 38 | +} |
| 39 | + |
| 40 | +.button-gradient { |
| 41 | + background: linear-gradient( |
| 42 | + 156deg, |
| 43 | + #02181d 13.54%, |
| 44 | + #000312 36.46%, |
| 45 | + rgba(23, 1, 37, 1) 68.23% |
| 46 | + ); |
| 47 | + background-blend-mode: darken; |
| 48 | + background-repeat: no-repeat; |
| 49 | + background-attachment: fixed; |
| 50 | + border: 2px solid white; |
| 51 | + transition: background 0.3s ease-in-out; |
| 52 | +} |
| 53 | + |
| 54 | +.button-gradient:hover { |
| 55 | + background: linear-gradient( |
| 56 | + 156deg, |
| 57 | + #02181d 33.54%, |
| 58 | + #000312 56.46%, |
| 59 | + rgba(23, 1, 37, 1) 88.23% |
| 60 | + ); |
| 61 | +} |
| 62 | + |
| 63 | +#works-carousel::-webkit-scrollbar, |
| 64 | +#reviews-carousel::-webkit-scrollbar { |
| 65 | + display: none; |
| 66 | +} |
| 67 | + |
| 68 | +#works-carousel, |
| 69 | +#reviews-carousel { |
| 70 | + -ms-overflow-style: none; /* IE and Edge */ |
| 71 | + scrollbar-width: none; /* Firefox */ |
| 72 | + position: relative; |
| 73 | + padding: 0 50px; |
| 74 | +} |
| 75 | + |
| 76 | +.carousel-container { |
| 77 | + position: relative; |
| 78 | + overflow: hidden; |
| 79 | +} |
| 80 | + |
| 81 | +.carousel-container::before { |
| 82 | + content: ""; |
| 83 | + position: absolute; |
| 84 | + top: 0; |
| 85 | + bottom: 0; |
| 86 | + width: 10%; |
| 87 | + z-index: 2; |
| 88 | + pointer-events: none; |
| 89 | +} |
| 90 | + |
| 91 | +.carousel-container::after { |
| 92 | + content: ""; |
| 93 | + position: absolute; |
| 94 | + top: 0; |
| 95 | + bottom: 0; |
| 96 | + right: 0; |
| 97 | + width: 10%; |
| 98 | + z-index: 2; |
| 99 | + pointer-events: none; |
| 100 | +} |
| 101 | + |
| 102 | +/* Animation */ |
| 103 | +.carousel-image { |
| 104 | + transition: transform 0.3s ease; |
| 105 | +} |
| 106 | + |
| 107 | +.carousel-image:hover { |
| 108 | + transform: scale(1.08); |
| 109 | +} |
| 110 | + |
| 111 | +/* Styles for small screens (phones) */ |
| 112 | +@media (max-width: 767px) { |
| 113 | + #navbar-default { |
| 114 | + position: relative; |
| 115 | + } |
| 116 | + #language-changer { |
| 117 | + position: fixed; |
| 118 | + right: 65px; |
| 119 | + top: 8px; |
| 120 | + } |
| 121 | +} |
| 122 | + |
| 123 | +.fade-in { |
| 124 | + opacity: 0; |
| 125 | + animation: fadeIn 2s forwards; |
| 126 | +} |
| 127 | + |
| 128 | +@keyframes fadeIn { |
| 129 | + to { |
| 130 | + opacity: 1; |
| 131 | + } |
| 132 | +} |
0 commit comments