└── J_Query ├── Exam JQ └── Exam JQ │ ├── css │ ├── all.css │ ├── bootstrap.min.css │ ├── font.css │ └── style.css │ ├── font │ ├── Manrope-Bold.woff │ ├── Manrope-Bold.woff2 │ ├── Manrope-ExtraBold.woff │ ├── Manrope-ExtraBold.woff2 │ ├── Manrope-ExtraLight.woff │ ├── Manrope-ExtraLight.woff2 │ ├── Manrope-Light.woff │ ├── Manrope-Light.woff2 │ ├── Manrope-Medium.woff │ ├── Manrope-Medium.woff2 │ ├── Manrope-Regular.woff │ ├── Manrope-Regular.woff2 │ ├── Manrope-SemiBold.woff │ └── Manrope-SemiBold.woff2 │ ├── img │ ├── logo-footer.png │ ├── logo_dark.png │ ├── preload.png │ └── sun.png │ ├── index.html │ ├── js │ ├── bootstrap.bundle.js │ ├── jquery.min.js │ └── swiper-bundle.min.js │ └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-duotone-900.ttf │ ├── fa-duotone-900.woff2 │ ├── fa-light-300.ttf │ ├── fa-light-300.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-sharp-light-300.ttf │ ├── fa-sharp-light-300.woff2 │ ├── fa-sharp-regular-400.ttf │ ├── fa-sharp-regular-400.woff2 │ ├── fa-sharp-solid-900.ttf │ ├── fa-sharp-solid-900.woff2 │ ├── fa-sharp-thin-100.ttf │ ├── fa-sharp-thin-100.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-thin-100.ttf │ ├── fa-thin-100.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 ├── admin-panel └── admin-panel │ ├── admin-panel.html │ ├── css │ ├── all.css │ ├── bootstrap.min.css │ ├── font.css │ ├── pricing.css │ └── style.css │ ├── font │ ├── Manrope-Bold.woff │ ├── Manrope-Bold.woff2 │ ├── Manrope-ExtraBold.woff │ ├── Manrope-ExtraBold.woff2 │ ├── Manrope-ExtraLight.woff │ ├── Manrope-ExtraLight.woff2 │ ├── Manrope-Light.woff │ ├── Manrope-Light.woff2 │ ├── Manrope-Medium.woff │ ├── Manrope-Medium.woff2 │ ├── Manrope-Regular.woff │ ├── Manrope-Regular.woff2 │ ├── Manrope-SemiBold.woff │ └── Manrope-SemiBold.woff2 │ ├── img │ ├── bronze.png │ ├── dash-prd-1 (1).jpg │ ├── dash-prd-2.jpg │ ├── dash-prd-3.jpg │ ├── dash-prd-4.jpg │ ├── favicon.png │ ├── gold.png │ ├── icon-flag-cn.svg │ ├── icon-flag-en.svg │ ├── icon-flag-fr.svg │ ├── icon-flag-sa.svg │ ├── logo.svg │ ├── mega-dd-bg.jpg │ ├── silver.png │ ├── user-1.jpg │ └── welcome-bg.png │ ├── js │ ├── apexcharts.js │ ├── bootstrap.bundle.js │ ├── jquery.min.js │ └── jquery.preloadinator.min.js │ ├── pricing.html │ └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-duotone-900.ttf │ ├── fa-duotone-900.woff2 │ ├── fa-light-300.ttf │ ├── fa-light-300.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-sharp-light-300.ttf │ ├── fa-sharp-light-300.woff2 │ ├── fa-sharp-regular-400.ttf │ ├── fa-sharp-regular-400.woff2 │ ├── fa-sharp-solid-900.ttf │ ├── fa-sharp-solid-900.woff2 │ ├── fa-sharp-thin-100.ttf │ ├── fa-sharp-thin-100.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-thin-100.ttf │ ├── fa-thin-100.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 ├── css ├── all.css ├── bootstrap.min.css ├── style.css ├── swiper-bundle.min.css └── swiper.css ├── img ├── logo.svg ├── pic1.png ├── pic2.png ├── pic3.png ├── pic4.png ├── pic5.png ├── pic6.png ├── pic7.png ├── pic8.png └── pic9.png ├── index.html ├── js ├── jquery.min.js └── swiper-bundle.min.js ├── swiper.html └── webfonts ├── fa-brands-400.ttf ├── fa-brands-400.woff2 ├── fa-duotone-900.ttf ├── fa-duotone-900.woff2 ├── fa-light-300.ttf ├── fa-light-300.woff2 ├── fa-regular-400.ttf ├── fa-regular-400.woff2 ├── fa-sharp-light-300.ttf ├── fa-sharp-light-300.woff2 ├── fa-sharp-regular-400.ttf ├── fa-sharp-regular-400.woff2 ├── fa-sharp-solid-900.ttf ├── fa-sharp-solid-900.woff2 ├── fa-sharp-thin-100.ttf ├── fa-sharp-thin-100.woff2 ├── fa-solid-900.ttf ├── fa-solid-900.woff2 ├── fa-thin-100.ttf ├── fa-thin-100.woff2 ├── fa-v4compatibility.ttf └── fa-v4compatibility.woff2 /J_Query/Exam JQ/Exam JQ/css/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Manrope'; 3 | src: url('../font/Manrope-ExtraLight.woff2') format('woff2'), 4 | url('../font/Manrope-ExtraLight.woff') format('woff'); 5 | font-weight: 200; 6 | font-style: normal; 7 | font-display: swap; 8 | } 9 | 10 | @font-face { 11 | font-family: 'Manrope'; 12 | src: url('../font/Manrope-Bold.woff2') format('woff2'), 13 | url('../font/Manrope-Bold.woff') format('woff'); 14 | font-weight: bold; 15 | font-style: normal; 16 | font-display: swap; 17 | } 18 | 19 | @font-face { 20 | font-family: 'Manrope'; 21 | src: url('../font/Manrope-Regular.woff2') format('woff2'), 22 | url('../font/Manrope-Regular.woff') format('woff'); 23 | font-weight: normal; 24 | font-style: normal; 25 | font-display: swap; 26 | } 27 | 28 | @font-face { 29 | font-family: 'Manrope'; 30 | src: url('../font/Manrope-ExtraBold.woff2') format('woff2'), 31 | url('../font/Manrope-ExtraBold.woff') format('woff'); 32 | font-weight: bold; 33 | font-style: normal; 34 | font-display: swap; 35 | } 36 | 37 | @font-face { 38 | font-family: 'Manrope'; 39 | src: url('../font/Manrope-Medium.woff2') format('woff2'), 40 | url('../font/Manrope-Medium.woff') format('woff'); 41 | font-weight: 500; 42 | font-style: normal; 43 | font-display: swap; 44 | } 45 | 46 | @font-face { 47 | font-family: 'Manrope'; 48 | src: url('../font/Manrope-Light.woff2') format('woff2'), 49 | url('../font/Manrope-Light.woff') format('woff'); 50 | font-weight: 300; 51 | font-style: normal; 52 | font-display: swap; 53 | } 54 | 55 | @font-face { 56 | font-family: 'Manrope'; 57 | src: url('../font/Manrope-SemiBold.woff2') format('woff2'), 58 | url('../font/Manrope-SemiBold.woff') format('woff'); 59 | font-weight: 600; 60 | font-style: normal; 61 | font-display: swap; 62 | } 63 | 64 | -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/css/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0px auto; 4 | cursor: none; 5 | } 6 | 7 | body { 8 | font-family: 'Manrope'; 9 | background-color: #040B11; 10 | overflow-x: hidden; 11 | } 12 | /* Pointer js */ 13 | .hidden{ 14 | display: none; 15 | } 16 | @import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap"); 17 | section { 18 | display: flex; 19 | justify-content: center; 20 | align-items: center; 21 | padding: 120px 0px; 22 | flex-direction: column; 23 | } 24 | .cursor { 25 | width: 50px; 26 | height: 50px; 27 | border-radius: 100%; 28 | border: 1px solid #ffcb36; 29 | transition: all 200ms ease-out; 30 | position: fixed; 31 | pointer-events: none; 32 | left: 0; 33 | z-index: 9999; 34 | top: 0; 35 | transform: translate(calc(-50% + 15px), -50%); 36 | } 37 | 38 | .cursor2 { 39 | width: 20px; 40 | height: 20px; 41 | border-radius: 100%; 42 | background-color:#ffffff; 43 | opacity: 0.6; 44 | z-index: 9999; 45 | position: fixed; 46 | transform: translate(-50%, -50%); 47 | pointer-events: none; 48 | transition: width 0.3s, height 0.3s, opacity 0.3s; 49 | } 50 | .hover { 51 | background-color:#9d8e8e5e; 52 | z-index: 9999; 53 | opacity: 0.8; 54 | border-color: #ffcb36 !important; 55 | } 56 | 57 | .cursorinnerhover { 58 | width: 50px; 59 | height: 50px; 60 | opacity: 0.7; 61 | } 62 | /* Loader */ 63 | .loader{ 64 | position: fixed; 65 | width: 100%; 66 | height: 100%; 67 | background-color: #040B11; 68 | z-index: 999999; 69 | } 70 | .loading { 71 | --speed-of-animation: 0.9s; 72 | --gap: 2px; 73 | display: flex; 74 | justify-content: center; 75 | align-items: center; 76 | width: 100px; 77 | gap: 2px; 78 | height: 100px; 79 | position: absolute; 80 | top: 50%; 81 | left: 50%; 82 | transform: translate( -50%, -50% ); 83 | } 84 | 85 | .loading span { 86 | width: 4px; 87 | height: 60px; 88 | background: #ffcb36; 89 | animation: scale 0.9s ease-in-out infinite; 90 | } 91 | 92 | .loading span:nth-child(2) { 93 | background: #fff; 94 | animation-delay: -0.8s; 95 | } 96 | 97 | .loading span:nth-child(3) { 98 | background: #ffcb36; 99 | animation-delay: -0.7s; 100 | } 101 | 102 | .loading span:nth-child(4) { 103 | background: #fff; 104 | animation-delay: -0.6s; 105 | } 106 | 107 | .loading span:nth-child(5) { 108 | background: #ffcb36; 109 | animation-delay: -0.5s; 110 | } 111 | 112 | @keyframes scale { 113 | 0%, 40%, 100% { 114 | transform: scaleY(0.05); 115 | } 116 | 117 | 20% { 118 | transform: scaleY(1); 119 | } 120 | } 121 | 122 | img { 123 | max-width: 100%; 124 | border-style: none; 125 | vertical-align: middle; 126 | } 127 | li{ 128 | list-style: none; 129 | padding: 0px; 130 | margin: 0px; 131 | } 132 | ol, 133 | ul { 134 | list-style: none; 135 | padding: 0px; 136 | margin: 0px; 137 | } 138 | ul li{ 139 | padding: 0.1em 0; 140 | } 141 | a { 142 | text-decoration: none; 143 | color: #fff; 144 | transition: all 0.3s ease; 145 | } 146 | /*header */ 147 | .header-area{ 148 | padding-right: 0 !important; 149 | position: relative; 150 | z-index: 10; 151 | background-color: #040B11; 152 | } 153 | .header-item{ 154 | display: flex; 155 | align-items: center; 156 | justify-content: left; 157 | } 158 | .header-item .header-logo{ 159 | flex-shrink: 0; 160 | margin-right: 68px; 161 | } 162 | #main-nav > ul > li { 163 | float: left; 164 | padding: 40px 17px 40px 0px; 165 | } 166 | #main-nav ul li { 167 | position: relative; 168 | } 169 | #main-nav > ul > .current-menu-item > a { 170 | color: #d6cf05; 171 | } 172 | #main-nav > ul > li > a { 173 | position: relative; 174 | font-size: 16px; 175 | line-height: 24px; 176 | font-weight: 400; 177 | display: block; 178 | padding-right: 11px; 179 | letter-spacing: 0.1em; 180 | text-transform: uppercase; 181 | } 182 | #main-nav > ul > li > a i{ 183 | font-weight: 700; 184 | } 185 | #main-nav > ul > li > a::before { 186 | position: absolute; 187 | content: ""; 188 | width: 70%; 189 | height: 2px; 190 | left: 0; 191 | bottom: -1px; 192 | background-color:#d6cf05; 193 | opacity: 0; 194 | transition: all 0.3s ease; 195 | } 196 | #main-nav > ul > .current-menu-item > a::before{ 197 | opacity: 1; 198 | } 199 | #main-nav > .menu > li.current-menu-item > a > i{ 200 | font-weight: 700; 201 | font-size: 20px; 202 | position: absolute; 203 | right: -20%; 204 | top: 50%; 205 | transform: translateY(-50%); 206 | } 207 | #main-nav .sub-menu { 208 | position: absolute; 209 | top: 80%; 210 | left: 0; 211 | width: 220px; 212 | padding: 5px 0; 213 | background-color: #141B22; 214 | z-index: 9999; 215 | opacity: 0; 216 | visibility: hidden; 217 | transition: all 0.3s ease; 218 | transform: translateY(15px); 219 | box-shadow: 0px 10px 25px rgba(71, 92, 133, 0.1); 220 | } 221 | #main-nav .sub-menu::before { 222 | content: ""; 223 | position: absolute; 224 | height: 15px; 225 | width: 15px; 226 | top: -5px; 227 | left: 15px; 228 | opacity: 1; 229 | z-index: -1; 230 | border-radius: 2px; 231 | transform: rotate(45deg); 232 | background-color: #141B22; 233 | } 234 | #main-nav > ul > li .sub-menu li { 235 | position: relative; 236 | } 237 | #main-nav .sub-menu li.current-item a:hover { 238 | color:#d6cf05; 239 | } 240 | #main-nav > ul > li > a:hover::before { 241 | opacity: 1; 242 | } 243 | #main-nav .sub-menu li a { 244 | display: block; 245 | font-weight: 400; 246 | font-size: 16px; 247 | line-height: 24px; 248 | padding: 6px 20px; 249 | } 250 | #main-nav > ul > li > a:hover { 251 | color:#d6cf05; 252 | } 253 | #main-nav li:hover .sub-menu { 254 | opacity: 1; 255 | visibility: visible; 256 | transform: translateY(0); 257 | } 258 | header .header-item .header-info-right { 259 | margin-left: auto; 260 | display: inline-flex; 261 | } 262 | .header-area .header-item .header-info-right .togglebar { 263 | width: 40px; 264 | height: 48px; 265 | line-height: 48px; 266 | text-align: center; 267 | background-color: #141B22; 268 | border-radius: 50%; 269 | display: flex; 270 | align-items: center; 271 | } 272 | .header-area .header-item .header-info-right .tf-button { 273 | padding: 12px 24px 12px 24px; 274 | background-color: #141B22; 275 | color: var(--bs-white); 276 | display: inline-flex; 277 | align-items: center; 278 | margin-left: 21px; 279 | } 280 | .tf-button { 281 | display: inline-block; 282 | font-family: "Bakbak One"; 283 | font-weight: 400; 284 | font-size: 16px; 285 | line-height: 24px; 286 | color: #141B22; 287 | background-color:#d6cf05; 288 | padding: 18px 36px; 289 | border: 2px solid transparent; 290 | position: relative; 291 | z-index: 2; 292 | overflow: hidden; 293 | transition: all 0.3s ease; 294 | } 295 | .header-area .header-item .header-info-right .tf-button i { 296 | margin-right: 10px; 297 | } 298 | .header-area .header-item .header-info-right .tf-button.connect { 299 | background-color:#d6cf05; 300 | color: #141B22; 301 | margin-right: 0; 302 | } 303 | .header-area .header-item .header-info-right .tf-button.connect i { 304 | font-size: 20px; 305 | } 306 | .header-area .header-item .header-info-right .tf-button::before { 307 | background-color:#d6cf05; 308 | } 309 | .tf-button::before { 310 | position: absolute; 311 | content: ""; 312 | left: 50%; 313 | transform: translateX(-50%); 314 | top: 0px; 315 | z-index: -1; 316 | height: 110%; 317 | width: 0%; 318 | background-color:#d6cf05; 319 | transition: all 0.3s ease; 320 | } 321 | .tf-button:hover { 322 | z-index: 2; 323 | background: transparent; 324 | border: 2px solid#d6cf05; 325 | } 326 | a:hover{ 327 | color:#d6cf05; 328 | text-decoration: none; 329 | outline: 0; 330 | transition: all 0.3s ease; 331 | } 332 | .tf-button:hover::before { 333 | width: 110%; 334 | } 335 | .header-area .header-item .header-info-right .tf-button.connect:hover { 336 | background-color: transparent; 337 | color: var(--bs-white); 338 | } 339 | .header-area .header-item .header-info-right .tf-button.connect::before { 340 | background-color: transparent; 341 | } 342 | 343 | 344 | @media (max-width: 599px) { 345 | #header .container { 346 | width: 100%; 347 | } 348 | #header h1 { 349 | padding-left: 3%; 350 | } 351 | #main-nav { 352 | width: 100%; 353 | top: 60px; 354 | } 355 | #main-nav:before { 356 | content: '\2630'; 357 | display: block; 358 | position: absolute; 359 | right: 3%; 360 | top: -50px; 361 | line-height: 40px; 362 | font-size: 1.4em; 363 | cursor: pointer; 364 | } 365 | #main-nav ul { 366 | width: 100%; 367 | margin: 0px; 368 | } 369 | #main-nav ul li { 370 | float: none; 371 | } 372 | #main-nav ul li a { 373 | padding: 10px 3%; 374 | line-height: 20px; 375 | border-top: 1px solid #333; 376 | } 377 | #main-nav ul { 378 | transition: 350ms; 379 | transform: perspective(600) rotate3d(0, 0, 0, 0); 380 | transform-origin: 50% 0; 381 | } 382 | #main-nav.open ul { 383 | transform: translateY(0px); 384 | } 385 | .togglebar i{ 386 | color: #fff; 387 | display: block !important; 388 | } 389 | .header-content{ 390 | display: none; 391 | } 392 | .block{ 393 | display: block !important; 394 | } 395 | } -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Bold.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Bold.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraBold.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraBold.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraLight.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-ExtraLight.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Light.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Light.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Medium.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Medium.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Regular.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-Regular.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-SemiBold.woff -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/font/Manrope-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/font/Manrope-SemiBold.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/img/logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/img/logo-footer.png -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/img/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/img/logo_dark.png -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/img/preload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/img/preload.png -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/img/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/img/sun.png -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | J-Query 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |
19 | 20 |
21 |
22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 | 31 | 32 | 33 |
34 |
35 |
36 |
37 |
38 | 43 |
44 | 193 |
194 | 207 |
208 |
209 |
210 |
211 |
212 | 213 | 214 | 215 | 216 | 217 | 218 | 230 | 231 | 232 | 269 | 275 | 276 | 277 | 278 | -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-duotone-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-duotone-900.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-light-300.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-light-300.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-light-300.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-regular-400.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-regular-400.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-solid-900.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-solid-900.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-thin-100.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-sharp-thin-100.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-thin-100.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-thin-100.woff2 -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /J_Query/Exam JQ/Exam JQ/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/Exam JQ/Exam JQ/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/css/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Manrope'; 3 | src: url('../font/Manrope-ExtraLight.woff2') format('woff2'), 4 | url('../font/Manrope-ExtraLight.woff') format('woff'); 5 | font-weight: 200; 6 | font-style: normal; 7 | font-display: swap; 8 | } 9 | 10 | @font-face { 11 | font-family: 'Manrope'; 12 | src: url('../font/Manrope-Bold.woff2') format('woff2'), 13 | url('../font/Manrope-Bold.woff') format('woff'); 14 | font-weight: bold; 15 | font-style: normal; 16 | font-display: swap; 17 | } 18 | 19 | @font-face { 20 | font-family: 'Manrope'; 21 | src: url('../font/Manrope-Regular.woff2') format('woff2'), 22 | url('../font/Manrope-Regular.woff') format('woff'); 23 | font-weight: normal; 24 | font-style: normal; 25 | font-display: swap; 26 | } 27 | 28 | @font-face { 29 | font-family: 'Manrope'; 30 | src: url('../font/Manrope-ExtraBold.woff2') format('woff2'), 31 | url('../font/Manrope-ExtraBold.woff') format('woff'); 32 | font-weight: bold; 33 | font-style: normal; 34 | font-display: swap; 35 | } 36 | 37 | @font-face { 38 | font-family: 'Manrope'; 39 | src: url('../font/Manrope-Medium.woff2') format('woff2'), 40 | url('../font/Manrope-Medium.woff') format('woff'); 41 | font-weight: 500; 42 | font-style: normal; 43 | font-display: swap; 44 | } 45 | 46 | @font-face { 47 | font-family: 'Manrope'; 48 | src: url('../font/Manrope-Light.woff2') format('woff2'), 49 | url('../font/Manrope-Light.woff') format('woff'); 50 | font-weight: 300; 51 | font-style: normal; 52 | font-display: swap; 53 | } 54 | 55 | @font-face { 56 | font-family: 'Manrope'; 57 | src: url('../font/Manrope-SemiBold.woff2') format('woff2'), 58 | url('../font/Manrope-SemiBold.woff') format('woff'); 59 | font-weight: 600; 60 | font-style: normal; 61 | font-display: swap; 62 | } 63 | 64 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/css/pricing.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | margin: 0px; 4 | } 5 | :root { 6 | --white: #fff; 7 | --black: #000; 8 | --HeaderContent: #526b7a; 9 | --textColor: #7b8893; 10 | --sidebarTextBg: #635bff; 11 | --btnHover: #5249fe; 12 | --NormalHeadingColor: #29343d; 13 | --TextHeading: #0a2540; 14 | --DivideColor: #e0e6eb; 15 | --BodyColor: #f4f7fb; 16 | --secondory: #14E9E2; 17 | --danger: #ff6692; 18 | --warning: #ffd648; 19 | --success: #36c76c; 20 | --iconBg: #635BFF33; 21 | --Pricing: #7B8893; 22 | --bs-primary-bg-subtle: rgba(99, 91, 255, 0.2); 23 | --bs-secondary-bg-subtle: rgba(20, 233, 226, 0.2); 24 | --bs-success-bg-subtle: rgba(54, 199, 108, 0.15); 25 | --bs-info-bg-subtle: rgba(70, 202, 235, 0.2); 26 | --bs-warning-bg-subtle: rgba(255, 214, 72, 0.2); 27 | --bs-danger-bg-subtle: rgba(255, 102, 146, 0.25); 28 | --border-menu: rgba(0, 0, 0, 0.175); 29 | } 30 | /* +++++++++++++++++++++++++++++++++++++++++++ */ 31 | /* Bg-colors */ 32 | .bg-primary-subtle { 33 | background-color: var(--iconBg) !important; 34 | } 35 | .bg-secondary-subtle { 36 | background-color: var(--bs-secondary-bg-subtle) !important; 37 | } 38 | .bg-warning-subtle { 39 | background-color: var(--bs-warning-bg-subtle) !important; 40 | } 41 | .bg-danger-subtle { 42 | background-color: var(--bs-danger-bg-subtle) !important; 43 | } 44 | .bg-success-subtle { 45 | background-color: var(--bs-success-bg-subtle) !important; 46 | } 47 | /* Colors */ 48 | .text-primary { 49 | --bs-text-opacity: 1; 50 | color: var(--sidebarTextBg) !important; 51 | } 52 | .text-warning { 53 | --bs-text-opacity: 1; 54 | color: var(--warning) !important; 55 | } 56 | .text-secondary { 57 | --bs-text-opacity: 1; 58 | color: var(--secondory) !important; 59 | } 60 | .text-danger { 61 | --bs-text-opacity: 1; 62 | color: var(--danger) !important; 63 | } 64 | .text-success { 65 | --bs-text-opacity: 1; 66 | color: var(--success) !important; 67 | } 68 | .text-bg-primary { 69 | color: #fff !important; 70 | background-color: var(--sidebarTextBg) !important; 71 | } 72 | /* +++++++++++++++++++++++++++++++++++++++++++ */ 73 | 74 | body { 75 | font-family: 'Manrope'; 76 | background-color: var(--white); 77 | overflow-y: scroll; 78 | } 79 | input { 80 | outline: none; 81 | } 82 | ul, 83 | li { 84 | margin: 0; 85 | padding: 0; 86 | list-style: none; 87 | } 88 | span, svg { 89 | display: block; 90 | } 91 | img { 92 | width: 100%; 93 | border: 0; 94 | vertical-align: middle; 95 | } 96 | p { 97 | line-height: 28px; 98 | font-size: 16px; 99 | margin: 0; 100 | font-weight: 400; 101 | } 102 | a { 103 | text-decoration: none; 104 | color: var(--NormalHeadingColor); 105 | } 106 | a:hover .h1, a:hover .h2, a:hover .h3, a:hover .h4, a:hover .h5, a:hover .h6, a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5, a:hover h6 { 107 | color: var(--sidebarTextBg); 108 | } 109 | .fs-3 { 110 | font-size: .875rem !important; 111 | } 112 | .fs-6 { 113 | font-size: 1.25rem !important; 114 | } 115 | .fs-7 { 116 | font-size: 1.5rem !important; 117 | } 118 | .fs-2 { 119 | font-size: .75rem !important; 120 | } 121 | .fs-8 { 122 | font-size: 1.875rem !important; 123 | } 124 | .fs-12 { 125 | font-size: .9375rem !important; 126 | } 127 | .ms-8 { 128 | margin-left: 10px !important; 129 | } 130 | .pb-9 { 131 | padding-bottom: 20px !important; 132 | } 133 | .py-6 { 134 | padding-top: 12px !important; 135 | padding-bottom: 12px !important; 136 | } 137 | .my-7 { 138 | margin-top: 30px !important; 139 | margin-bottom: 30px !important; 140 | } 141 | .gap-6 { 142 | gap: 12px !important; 143 | } 144 | .pt-6 { 145 | padding-top: 12px !important; 146 | } 147 | .round-48 { 148 | width: 48px; 149 | height: 48px; 150 | } 151 | .h6, h6 { 152 | font-size: .9375rem; 153 | } 154 | .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 155 | margin-top: 0; 156 | margin-bottom: .5rem; 157 | font-weight: 600; 158 | line-height: normal !important; 159 | color: var(--NormalHeadingColor); 160 | } 161 | .text-body-color { 162 | color: var(--textColor) !important; 163 | } 164 | .fs-11 { 165 | font-size: .8125rem !important; 166 | } 167 | .lh-21{ 168 | line-height: 21px; 169 | } 170 | .round { 171 | width: 45px; 172 | height: 45px; 173 | } 174 | .round-20 { 175 | width: 20px !important; 176 | height: 20px !important; 177 | } 178 | .px-7 { 179 | padding-right: 30px !important; 180 | padding-left: 30px !important; 181 | } 182 | /* Main-wrapper */ 183 | .main-wrapper { 184 | display: flex; 185 | align-items: stretch; 186 | min-height: 100vh; 187 | } 188 | .main-wrapper .left-sidebar{ 189 | width: 260px; 190 | flex-shrink: 0; 191 | display: block; 192 | z-index: 99; 193 | transition: 0.2s ease-in; 194 | height: 100%; 195 | background-color: var(--white); 196 | } 197 | .left-sidebar .brand-logo { 198 | padding: 0 24px ; 199 | } 200 | .brand-logo{ 201 | min-height: 72px; 202 | } 203 | /* Slide-bar */ 204 | .scroll-sidebar{ 205 | overflow-y: auto; 206 | padding: 0 16px; 207 | height: calc(100vh - 66px); 208 | } 209 | .sidebar-wrapper { 210 | margin: 0px -16px; 211 | } 212 | .sidebar-content{ 213 | padding: 0px 9px 0px 16px; 214 | } 215 | 216 | /* ScrollBar */ 217 | ::-webkit-scrollbar { 218 | height: 48px; 219 | width: 7px; 220 | } 221 | 222 | ::-webkit-scrollbar-thumb { 223 | background-color: rgba(0, 0, 0, .2); 224 | border-radius: 10px; 225 | visibility: hidden; 226 | } 227 | .sidebar-nav:hover ::-webkit-scrollbar-thumb { 228 | visibility: visible; 229 | } 230 | .nav-caption{ 231 | font-size: 12px; 232 | font-weight: 600; 233 | padding: 7px 0; 234 | line-height: 26px; 235 | letter-spacing: 1.5px; 236 | text-transform: uppercase; 237 | color: var(--NormalHeadingColor); 238 | } 239 | .left-sidebar:hover .nav-caption{ 240 | text-align: left; 241 | } 242 | .left-sidebar .nav-caption .mini-icon{ 243 | display: inline-block; 244 | } 245 | .left-sidebar:hover .nav-caption .mini-icon{ 246 | display: none; 247 | } 248 | .sidebar-nav ul .sidebar-item .sidebar-link, .sidebar-nav ul .sidebar-item .sidebar-link-2 { 249 | display: flex; 250 | font-size: 15px; 251 | white-space: nowrap; 252 | align-items: center; 253 | position: relative; 254 | padding: 11px 16px; 255 | border-radius: 12px; 256 | gap: 10px; 257 | font-weight: 400; 258 | margin-bottom: 4px; 259 | color: var(--NormalHeadingColor); 260 | } 261 | .sidebar-nav ul .sidebar-item .sidebar-link:hover, .sidebar-nav ul .sidebar-item .sidebar-link-2:hover { 262 | color: var(--sidebarTextBg); 263 | } 264 | .sidebar-nav ul .sidebar-item .sidebar-link.active { 265 | background-color: var(--sidebarTextBg); 266 | color: var(--white); 267 | box-shadow: 0 17px 20px -8px rgba(77,91,236,.231372549); 268 | } 269 | .sidebar-nav ul .sidebar-item .sidebar-link iconify-icon { 270 | color: var(--NormalHeadingColor); 271 | font-size: 18px; 272 | opacity: 0.8; 273 | } 274 | .sidebar-nav ul .sidebar-item .sidebar-link:hover iconify-icon { 275 | color: var(--sidebarTextBg); 276 | opacity: 1; 277 | } 278 | .sidebar-nav ul .sidebar-item .sidebar-link.active iconify-icon { 279 | color: var(--white) !important; 280 | } 281 | .sidebar-nav .has-arrow { 282 | position: relative; 283 | } 284 | .sidebar-nav ul .sidebar-item .has-arrow::after { 285 | position: absolute; 286 | content: ""; 287 | width: 9px; 288 | height: 9px; 289 | border-width: 1px 0 0 1px; 290 | border-style: solid; 291 | border-color: var(--NormalHeadingColor); 292 | margin-left: 10px; 293 | transform: rotate(-135deg) translate(0, -50%); 294 | transform-origin: top; 295 | top: 21px; 296 | right: 16px; 297 | transition: all .3s ease-out; 298 | } 299 | .sidebar-nav ul .sidebar-item .sidebar-link:hover.has-arrow::after { 300 | border-color: var(--sidebarTextBg); 301 | } 302 | .sidebar-nav ul .sidebar-item .sidebar-link.active.has-arrow::after { 303 | border-color: var(--white); 304 | } 305 | 306 | .sidebar-divider { 307 | height: .5px; 308 | display: block; 309 | margin: 12px 0; 310 | background: var(--DivideColor); 311 | width: 100%; 312 | } 313 | .circle-shape { 314 | width: 18px; 315 | height: 10px; 316 | } 317 | .bg-primary { 318 | background-color: var(--sidebarTextBg) !important; 319 | } 320 | .bg-secondary{ 321 | background-color: var(--secondory) !important; 322 | } 323 | .bg-dange{ 324 | background-color: var(--danger) !important; 325 | } 326 | .bg-warning{ 327 | background-color: var(--warning) !important; 328 | } 329 | .bg-success{ 330 | background-color: var(--success) !important; 331 | } 332 | .sidebar-item .sidebar-submenu .sidebar-item { 333 | transition: all .4s ease-in-out; 334 | border-bottom: 0; 335 | } 336 | .sidebar-item .sidebar-submenu .sidebar-item >.sidebar-link { 337 | padding: 8px 21px; 338 | font-size: 14px; 339 | gap: 21px; 340 | } 341 | .sidebar-item .sidebar-submenu .sidebar-item:last-child{ 342 | margin-bottom: 16px; 343 | } 344 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item .sidebar-link .icon-small{ 345 | width: 6px; 346 | height: 6px; 347 | border-radius: 100%; 348 | background: var(--textColor); 349 | } 350 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item .sidebar-link.active { 351 | box-shadow: none !important; 352 | background-color: transparent !important; 353 | color: var(--sidebarTextBg) !important; 354 | } 355 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item .sidebar-link.active .icon-small { 356 | background-color: var(--sidebarTextBg); 357 | } 358 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item .sidebar-link:hover .icon-small { 359 | background-color: var(--sidebarTextBg); 360 | } 361 | .sidebar-nav ul .sidebar-item .two-level .sidebar-item .sidebar-link, 362 | .sidebar-nav ul .sidebar-item .three-level .sidebar-item .sidebar-link { 363 | padding: 8px 10px 8px 45px; 364 | } 365 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item .sidebar-link.active.has-arrow::after { 366 | border-color: var(--sidebarTextBg); 367 | } 368 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item { 369 | transition: all .4s ease-in-out; 370 | border-bottom: 0; 371 | } 372 | .sidebar-submenu{ 373 | display: none; 374 | } 375 | 376 | /* Topbar */ 377 | .page-wrapper { 378 | width: 100%; 379 | transition: .2s ease-in; 380 | overflow-x: hidden; 381 | margin-left: 260px; 382 | } 383 | .topbar { 384 | position: fixed; 385 | top: 0; 386 | width: 100%; 387 | background: var(--bs-body-bg); 388 | z-index: 9; 389 | padding: 0 15px; 390 | } 391 | .topbar { 392 | width: calc(100% - 260px); 393 | } 394 | .topbar .navbar { 395 | min-height: 72px; 396 | } 397 | .topbar .navbar .navbar-nav { 398 | gap: 8px; 399 | align-items: center; 400 | } 401 | .nav-icon-hover-bg { 402 | width: 40px; 403 | height: 40px; 404 | padding: 0; 405 | align-items: center; 406 | justify-content: center; 407 | } 408 | .topbar .navbar .navbar-nav .nav-item .nav-link { 409 | display: flex; 410 | align-items: center; 411 | line-height: 72px; 412 | margin: 10px 0; 413 | padding: 0 16px; 414 | font-size: 14px; 415 | color: var(--HeaderContent); 416 | } 417 | .navbar-nav .hover-dd { 418 | position: static; 419 | } 420 | .topbar .navbar .navbar-nav .dropdown-menu { 421 | position: absolute; 422 | width: 100%; 423 | border: 0; 424 | 425 | } 426 | .dropdown-menu-nav { 427 | min-width: 860px !important; 428 | width: 100%; 429 | border: 0; 430 | border-radius: 12px; 431 | box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;; 432 | 433 | } 434 | .dropdown-menu-animate-up { 435 | animation: animation-dropdown-menu-fade-in .5s ease 1, animation-dropdown-menu-move-up .5s ease-out 1; 436 | } 437 | .rounded { 438 | border-radius: 12px !important; 439 | } 440 | /* ...................... */ 441 | @keyframes animation-dropdown-menu-fade-in{ 442 | 0% { 443 | opacity: 0; 444 | } 445 | 100% { 446 | opacity: 1; 447 | } 448 | } 449 | /* .................... */ 450 | .nav-icon-hover-bg:hover { 451 | background-color: var(--iconBg); 452 | } 453 | .topbar .navbar .navbar-nav .nav-item .nav-link:hover { 454 | color: var(--sidebarTextBg); 455 | border-color: var(--sidebarTextBg); 456 | } 457 | .navbar-nav .hover-dd:hover .dropdown-menu { 458 | display: block; 459 | } 460 | .mega-dd-bg { 461 | position: absolute; 462 | top: 0; 463 | right: 0; 464 | width: 300px; 465 | height: 100%; 466 | } 467 | /* ******************** */ 468 | .nav-item.dropdown:hover .dropdown-menu { 469 | display: block; 470 | } 471 | .nav-item.dropdown .dropdown-menu-end { 472 | right: 0; 473 | left: auto; 474 | top: 100%; 475 | } 476 | .topbar .navbar .navbar-nav .dropdown-menu { 477 | position: absolute; 478 | min-width: 200px; 479 | border: 0; 480 | box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;; 481 | } 482 | .dropdown-menu.content-dd { 483 | width: 360px !important; 484 | } 485 | .message-body { 486 | max-height: 360px; 487 | } 488 | .dropdown-item:hover{ 489 | color: var(--sidebarTextBg) !important; 490 | } 491 | .btn:hover { 492 | color: var(--white); 493 | background-color: var(--btnHover); 494 | border-color: var(--btnHover); 495 | } 496 | button.btn-primary{ 497 | color: var(--white); 498 | background-color: var(--sidebarTextBg); 499 | border-color: var(--sidebarTextBg); 500 | } 501 | /* ************************ */ 502 | /* Flags >>>>>>>>>> */ 503 | .dropdown-menu.profile-dropdown { 504 | width: 300px !important; 505 | } 506 | /* <<<<<<<<< Flags */ 507 | /* User>>>>>>>>>>> */ 508 | .dropdown-menu.profile-dropdown img{ 509 | width: 56px; 510 | height: 56px; 511 | } 512 | .dropdown-menu.profile-dropdown h5{ 513 | line-height: normal; 514 | } 515 | .profile-dropdown h5 span{ 516 | padding-left: 5px; 517 | } 518 | .dropdown-item span{ 519 | padding: 5px 10px; 520 | } 521 | /* <<<<<<<<<<<< User */ 522 | .sidebar-link-2{ 523 | color: var(--NormalHeadingColor); 524 | } 525 | /*------------------- Pricing -------------------*/ 526 | 527 | .body-wrapper { 528 | margin-top: 72px; 529 | overflow-y:hidden scroll; 530 | margin-left: 0; 531 | margin-right: calc(30px / 2); 532 | margin-bottom: 30px; 533 | border: 1px solid transparent; 534 | border-radius: 20px !important; 535 | background: var(--BodyColor); 536 | min-height: calc(100% - 102px); 537 | } 538 | .card { 539 | margin-bottom: 30px; 540 | 541 | } 542 | .card-body { 543 | flex: 1 1 auto; 544 | padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); 545 | color: var(--bs-card-color); 546 | } 547 | .pricing-area{ 548 | max-width: 1200px; 549 | margin: 0 auto; 550 | padding: 30px; 551 | } 552 | .card-body { 553 | flex: 1 1 auto; 554 | padding: 30px; 555 | color: var(--TextHeading); 556 | border-radius: 12px; 557 | background-color: var(--white); 558 | box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2); 559 | border: 0; 560 | } 561 | .card-title { 562 | font-size: 18px; 563 | margin-bottom: 8px; 564 | color: var(--TextHeading); 565 | } 566 | .text-muted { 567 | color: #526b7a !important; 568 | } 569 | .price-2{ 570 | padding-left: 1rem; 571 | } 572 | .price-2::before{ 573 | content: '/'; 574 | float: left; 575 | padding-right: 1rem; 576 | color: var(--NormalHeadingColor); 577 | } 578 | .card-rank{ 579 | color: var(--Pricing); 580 | margin-bottom: 30px; 581 | } 582 | .pricing-img img{ 583 | width: 80px; 584 | height: 80px; 585 | 586 | } 587 | .card-body h4{ 588 | line-height: normal; 589 | } 590 | .card-content{ 591 | margin-bottom: 30px; 592 | } 593 | .card-content span{ 594 | color: #526b7a !important; 595 | font-size: 14px; 596 | line-height: 18px; 597 | } 598 | .pay h5, .pay h2{ 599 | line-height: normal; 600 | } 601 | .pay span{ 602 | font-size: 16px; 603 | color: var(--Pricing); 604 | } -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | margin: 0px; 4 | } 5 | :root { 6 | --white: #fff; 7 | --black: #000; 8 | --HeaderContent: #526b7a; 9 | --textColor: #7b8893; 10 | --sidebarTextBg: #635bff; 11 | --btnHover: #5249fe; 12 | --NormalHeadingColor: #29343d; 13 | --TextHeading: #0a2540; 14 | --DivideColor: #e0e6eb; 15 | --BodyColor: #f4f7fb; 16 | --secondory: #14E9E2; 17 | --danger: #ff6692; 18 | --warning: #ffd648; 19 | --success: #36c76c; 20 | --iconBg: #635bff33; 21 | --search-color: rgba(10, 37, 64); 22 | --purpulcolor: rgba(99, 91, 255, 0.2); 23 | --gren-color: rgba(20, 233, 226, 0.2); 24 | --parrot-d: rgba(54, 199, 108, 0.15); 25 | --bs-info-bg-subtle: rgba(70, 202, 235, 0.2); 26 | --yellow: rgba(255, 214, 72, 0.2); 27 | --bs-danger-bg-subtle: rgba(255, 102, 146, 0.25); 28 | --border-menu: rgba(0, 0, 0, 0.175); 29 | } 30 | /* Pre-loader */ 31 | .pre-loader { 32 | width: 100%; 33 | height: 100vh; 34 | position: absolute; 35 | background-color: var(--white); 36 | justify-content: center; 37 | display: flex; 38 | align-items: center; 39 | z-index: 9999; 40 | } 41 | /* Pre-loader end*/ 42 | /* Bg-colors */ 43 | .dark-blue { 44 | background-color: var(--iconBg) !important; 45 | color: var(--sidebarTextBg) !important; 46 | } 47 | .blue { 48 | background-color: var(--gren-color) !important; 49 | color: var(--secondory) !important; 50 | } 51 | .bg-yellow { 52 | background-color: var(--yellow) !important; 53 | color: var(--warning) !important; 54 | } 55 | .dark-pink { 56 | background-color: var(--bs-danger-bg-subtle) !important; 57 | color: var(--danger) !important; 58 | } 59 | .green { 60 | background-color: var(--parrot-d) !important; 61 | color: var(--success) !important; 62 | } 63 | /* Colors */ 64 | .text-bg-primary { 65 | color: #fff !important; 66 | background-color: var(--sidebarTextBg) !important; 67 | } 68 | /* +++++++++++++++++++++++++++++++++++++++++++ */ 69 | 70 | body { 71 | font-family: "Manrope"; 72 | background-color: var(--white); 73 | } 74 | input { 75 | outline: none; 76 | } 77 | ul, 78 | li { 79 | margin: 0; 80 | padding: 0; 81 | list-style: none; 82 | } 83 | span, 84 | svg { 85 | display: block; 86 | } 87 | img { 88 | border: 0; 89 | vertical-align: middle; 90 | } 91 | p { 92 | line-height: 28px; 93 | font-size: 16px; 94 | margin: 0; 95 | font-weight: 400; 96 | } 97 | a { 98 | text-decoration: none; 99 | color: var(--NormalHeadingColor); 100 | } 101 | a:hover .h1, 102 | a:hover .h2, 103 | a:hover .h3, 104 | a:hover .h4, 105 | a:hover .h5, 106 | a:hover .h6, 107 | a:hover h1, 108 | a:hover h2, 109 | a:hover h3, 110 | a:hover h4, 111 | a:hover h5, 112 | a:hover h6 { 113 | color: var(--sidebarTextBg); 114 | } 115 | .fs-3 { 116 | font-size: 0.875rem !important; 117 | } 118 | .fs-6 { 119 | font-size: 1.25rem !important; 120 | } 121 | .fs-7 { 122 | font-size: 1.5rem !important; 123 | } 124 | .fs-2 { 125 | font-size: 0.75rem !important; 126 | } 127 | .fs-12 { 128 | font-size: 0.9375rem !important; 129 | } 130 | .ms-8 { 131 | margin-left: 10px !important; 132 | } 133 | .pb-9 { 134 | padding-bottom: 20px !important; 135 | } 136 | .py-6 { 137 | padding-top: 12px !important; 138 | padding-bottom: 12px !important; 139 | } 140 | .gap-6 { 141 | gap: 12px !important; 142 | } 143 | .round-48 { 144 | width: 48px; 145 | height: 48px; 146 | } 147 | .h6, 148 | h6 { 149 | font-size: 0.9375rem; 150 | } 151 | .h1, 152 | .h2, 153 | .h3, 154 | .h4, 155 | .h5, 156 | .h6, 157 | h1, 158 | h2, 159 | h3, 160 | h4, 161 | h5, 162 | h6 { 163 | margin-top: 0; 164 | margin-bottom: 0.5rem; 165 | font-weight: 600; 166 | line-height: normal; 167 | color: var(--NormalHeadingColor); 168 | } 169 | .text-body-color { 170 | color: var(--textColor) !important; 171 | } 172 | .fs-11 { 173 | font-size: 0.8125rem !important; 174 | } 175 | .lh-21 { 176 | line-height: 21px; 177 | } 178 | .round { 179 | width: 45px; 180 | height: 45px; 181 | } 182 | .round-20 { 183 | width: 20px !important; 184 | height: 20px !important; 185 | } 186 | .px-7 { 187 | padding-right: 30px !important; 188 | padding-left: 30px !important; 189 | } 190 | /* Main-wrapper */ 191 | .main-wrapper { 192 | display: flex; 193 | align-items: stretch; 194 | min-height: 100vh; 195 | } 196 | .link-sidebar .left-sidebar:hover { 197 | width: 260px !important; 198 | } 199 | .main-wrapper .left-sidebar { 200 | width: 260px; 201 | flex-shrink: 0; 202 | display: block; 203 | z-index: 99; 204 | transition: 0.2s ease-in; 205 | height: 100%; 206 | background-color: var(--white); 207 | } 208 | .left-sidebar .brand-logo { 209 | padding: 0 24px; 210 | } 211 | .brand-logo { 212 | min-height: 72px; 213 | } 214 | /* Slide-bar */ 215 | .scroll-sidebar { 216 | overflow-y: auto; 217 | padding: 0 16px; 218 | height: calc(100vh - 66px); 219 | } 220 | .simplebar-wrapper { 221 | overflow: hidden; 222 | height: inherit; 223 | width: inherit; 224 | max-width: inherit; 225 | max-height: inherit; 226 | } 227 | .sidebar-content { 228 | padding: 0px 9px 0px 16px; 229 | } 230 | 231 | /* ScrollBar */ 232 | .sidebar-wrapper ::-webkit-scrollbar { 233 | height: 48px; 234 | width: 7px; 235 | } 236 | 237 | .sidebar-wrapper ::-webkit-scrollbar-thumb { 238 | background-color: rgba(0, 0, 0, 0.2); 239 | border-radius: 10px; 240 | visibility: hidden; 241 | } 242 | .sidebar-wrapper:hover ::-webkit-scrollbar-thumb { 243 | visibility: visible; 244 | } 245 | .nav-caption { 246 | font-size: 12px; 247 | font-weight: 600; 248 | padding: 7px 0; 249 | line-height: 26px; 250 | letter-spacing: 1.5px; 251 | text-transform: uppercase; 252 | color: var(--NormalHeadingColor); 253 | } 254 | .sidebar-nav ul .sidebar-item .sidebar-link, 255 | .sidebar-nav ul .sidebar-item .sidebar-link-2 { 256 | display: flex; 257 | font-size: 15px; 258 | white-space: nowrap; 259 | align-items: center; 260 | position: relative; 261 | padding: 11px 16px; 262 | border-radius: 12px; 263 | gap: 10px; 264 | font-weight: 400; 265 | margin-bottom: 4px; 266 | color: var(--NormalHeadingColor); 267 | } 268 | .sidebar-nav ul .sidebar-item .sidebar-link:hover, 269 | .sidebar-nav ul .sidebar-item .sidebar-link-2:hover { 270 | color: var(--sidebarTextBg); 271 | } 272 | .sidebar-nav ul .sidebar-item .sidebar-link.active { 273 | background-color: var(--sidebarTextBg); 274 | color: var(--white); 275 | box-shadow: 0 17px 20px -8px rgba(77, 91, 236, 0.231372549); 276 | } 277 | .sidebar-nav ul .sidebar-item .sidebar-link iconify-icon { 278 | color: var(--NormalHeadingColor); 279 | font-size: 18px; 280 | opacity: 0.8; 281 | } 282 | .sidebar-nav ul .sidebar-item .sidebar-link:hover iconify-icon { 283 | color: var(--sidebarTextBg); 284 | opacity: 1; 285 | } 286 | .sidebar-nav ul .sidebar-item .sidebar-link.active iconify-icon { 287 | color: var(--white) !important; 288 | } 289 | .sidebar-nav .has-arrow { 290 | position: relative; 291 | } 292 | .sidebar-nav ul .sidebar-item .has-arrow::after { 293 | position: absolute; 294 | content: ""; 295 | width: 9px; 296 | height: 9px; 297 | border-width: 1px 0 0 1px; 298 | border-style: solid; 299 | border-color: var(--NormalHeadingColor); 300 | margin-left: 10px; 301 | transform: rotate(-135deg) translate(0, -50%); 302 | transform-origin: top; 303 | top: 21px; 304 | right: 16px; 305 | transition: all 0.3s ease-out; 306 | } 307 | .sidebar-nav ul .sidebar-item .sidebar-link:hover.has-arrow::after { 308 | border-color: var(--sidebarTextBg); 309 | } 310 | .sidebar-nav ul .sidebar-item .sidebar-link.active.has-arrow::after { 311 | border-color: var(--white); 312 | } 313 | 314 | .sidebar-divider { 315 | height: 0.5px; 316 | display: block; 317 | margin: 12px 0; 318 | background: var(--DivideColor); 319 | width: 100%; 320 | } 321 | .circle-shape { 322 | width: 18px; 323 | height: 10px; 324 | } 325 | .circle-shape.s-1{ 326 | background-color: var(--sidebarTextBg) !important; 327 | } 328 | .circle-shape.s-2 { 329 | background-color: var(--secondory) !important; 330 | } 331 | .circle-shape.s-3 { 332 | background-color: var(--danger) !important; 333 | } 334 | .circle-shape.s-4 { 335 | background-color: var(--warning) !important; 336 | } 337 | .circle-shape.s-5 { 338 | background-color: var(--success) !important; 339 | } 340 | .sidebar-item .sidebar-submenu .sidebar-item { 341 | transition: all 0.4s ease-in-out; 342 | border-bottom: 0; 343 | } 344 | .left-sidebar .nav-caption .mini-icon{ 345 | display: none !important; 346 | } 347 | .sidebar-item .sidebar-submenu .sidebar-item > .sidebar-link { 348 | padding: 8px 21px; 349 | font-size: 14px; 350 | gap: 21px; 351 | } 352 | .sidebar-item .sidebar-submenu .sidebar-item:last-child { 353 | margin-bottom: 16px; 354 | } 355 | .sidebar-nav 356 | ul 357 | .sidebar-item 358 | .sidebar-submenu 359 | .sidebar-item 360 | .sidebar-link 361 | .icon-small { 362 | width: 6px; 363 | height: 6px; 364 | border-radius: 100%; 365 | background: var(--textColor); 366 | } 367 | .sidebar-nav 368 | ul 369 | .sidebar-item 370 | .sidebar-submenu 371 | .sidebar-item 372 | .sidebar-link.active { 373 | box-shadow: none !important; 374 | background-color: transparent !important; 375 | color: var(--sidebarTextBg) !important; 376 | } 377 | .sidebar-nav 378 | ul 379 | .sidebar-item 380 | .sidebar-submenu 381 | .sidebar-item 382 | .sidebar-link.active 383 | .icon-small { 384 | background-color: var(--sidebarTextBg); 385 | } 386 | .sidebar-nav 387 | ul 388 | .sidebar-item 389 | .sidebar-submenu 390 | .sidebar-item 391 | .sidebar-link:hover 392 | .icon-small { 393 | background-color: var(--sidebarTextBg); 394 | } 395 | .left-sidebar:hover .sidebar-item .sidebar-link .hide-menu{ 396 | display: inline-block !important; 397 | } 398 | .sidebar-nav ul .sidebar-item .two-level .sidebar-item .sidebar-link, 399 | .sidebar-nav ul .sidebar-item .three-level .sidebar-item .sidebar-link { 400 | padding: 8px 10px 8px 45px; 401 | } 402 | .sidebar-nav 403 | ul 404 | .sidebar-item 405 | .sidebar-submenu 406 | .sidebar-item 407 | .sidebar-link.active.has-arrow::after { 408 | border-color: var(--sidebarTextBg); 409 | } 410 | .left-sidebar:hover .sidebar-item .sidebar-link.has-arrow::after{ 411 | display: inline-block !important; 412 | } 413 | .sidebar-nav ul .sidebar-item .sidebar-submenu .sidebar-item { 414 | transition: all 0.4s ease-in-out; 415 | border-bottom: 0; 416 | } 417 | .sidebar-submenu{ 418 | display: none; 419 | } 420 | /* Topbar */ 421 | .page-wrapper { 422 | width: 100%; 423 | transition: 0.2s ease-in; 424 | overflow-x: hidden; 425 | margin-left: 260px; 426 | } 427 | .topbar { 428 | position: fixed; 429 | top: 0; 430 | width: 100%; 431 | background: var(--white); 432 | z-index: 9; 433 | padding: 0 15px; 434 | } 435 | .topbar { 436 | width: calc(100% - 260px); 437 | } 438 | .topbar .navbar { 439 | min-height: 72px; 440 | } 441 | .topbar .navbar .navbar-nav { 442 | gap: 8px; 443 | align-items: center; 444 | } 445 | .nav-icon-hover-bg { 446 | width: 40px; 447 | height: 40px; 448 | padding: 0; 449 | align-items: center; 450 | justify-content: center; 451 | } 452 | .topbar .navbar .navbar-nav .nav-item .nav-link { 453 | display: flex; 454 | align-items: center; 455 | line-height: 72px; 456 | margin: 10px 0; 457 | padding: 0 16px; 458 | font-size: 14px; 459 | color: var(--HeaderContent); 460 | } 461 | .navbar-nav .hover-dd { 462 | position: static; 463 | } 464 | .topbar .navbar .navbar-nav .dropdown-menu { 465 | position: absolute; 466 | width: 100%; 467 | border: 0; 468 | } 469 | /* modal */ 470 | 471 | 472 | .modal-content{ 473 | border-radius: 15px; 474 | border: none; 475 | } 476 | .modal-header{ 477 | border-bottom: 1px solid var(--DivideColor); 478 | } 479 | .form-control{ 480 | padding: 10px 16px; 481 | font-size: 14px; 482 | font-weight: 500; 483 | color: var(--NormalHeadingColor); 484 | background-color: transparent; 485 | border-radius: 8px; 486 | box-shadow: unset; 487 | } 488 | .form-control:focus{ 489 | border-color: #b1adff; 490 | background-color: transparent; 491 | box-shadow: none; 492 | } 493 | .modal-header a{ 494 | color: var(--NormalHeadingColor); 495 | } 496 | .modal-header a i{ 497 | font-weight: 400; 498 | font-size: 16px; 499 | } 500 | .btn-close { 501 | margin: 10px !important; 502 | } 503 | 504 | .dropdown-menu-nav { 505 | min-width: 860px !important; 506 | width: 100%; 507 | border: 0; 508 | border-radius: 12px; 509 | box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, 510 | rgba(145, 158, 171, 0.12) 0px 12px 24px -4px; 511 | } 512 | .dropdown-menu-animate-up { 513 | animation: animation-dropdown-menu-fade-in 0.5s ease 1, 514 | animation-dropdown-menu-move-up 0.5s ease-out 1; 515 | } 516 | .rounded { 517 | border-radius: 12px !important; 518 | } 519 | /* ...................... */ 520 | @keyframes animation-dropdown-menu-fade-in { 521 | 0% { 522 | opacity: 0; 523 | } 524 | 100% { 525 | opacity: 1; 526 | } 527 | } 528 | /* .................... */ 529 | .nav-icon-hover-bg:hover { 530 | background-color: var(--iconBg); 531 | } 532 | .topbar .navbar .navbar-nav .nav-item .nav-link:hover { 533 | color: var(--sidebarTextBg); 534 | border-color: var(--sidebarTextBg); 535 | } 536 | .navbar-nav .hover-dd:hover .dropdown-menu { 537 | display: block; 538 | } 539 | .mega-dd-bg { 540 | position: absolute; 541 | top: 0; 542 | right: 0; 543 | width: 300px; 544 | height: 100%; 545 | } 546 | /* ******************** */ 547 | .nav-item.dropdown:hover .dropdown-menu { 548 | display: block !important; 549 | } 550 | .nav-item.dropdown .dropdown-menu-end { 551 | right: 0; 552 | left: auto; 553 | top: 100%; 554 | } 555 | .topbar .navbar .navbar-nav .dropdown-menu { 556 | position: absolute; 557 | min-width: 200px; 558 | border: 0; 559 | box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, 560 | rgba(145, 158, 171, 0.12) 0px 12px 24px -4px; 561 | } 562 | .dropdown-menu.content-dd { 563 | width: 360px !important; 564 | } 565 | .message-body { 566 | max-height: 360px; 567 | } 568 | .simplebar-wrapper::-webkit-scrollbar { 569 | height: 48px; 570 | width: 7px; 571 | } 572 | 573 | .simplebar-wrapper::-webkit-scrollbar-thumb { 574 | background-color: rgba(0, 0, 0, 0.2); 575 | border-radius: 10px; 576 | visibility: hidden; 577 | } 578 | .simplebar-wrapper:hover::-webkit-scrollbar-thumb { 579 | visibility: visible; 580 | } 581 | .dropdown-item:hover { 582 | color: var(--sidebarTextBg) !important; 583 | } 584 | .btn:hover { 585 | color: var(--white); 586 | background-color: var(--btnHover); 587 | border-color: var(--btnHover); 588 | } 589 | button.btn-primary { 590 | color: var(--white); 591 | background-color: var(--sidebarTextBg); 592 | border-color: var(--sidebarTextBg); 593 | } 594 | /* ************************ */ 595 | /* Flags >>>>>>>>>> */ 596 | .dropdown-menu.profile-dropdown { 597 | width: 300px !important; 598 | } 599 | /* <<<<<<<<< Flags */ 600 | /* User>>>>>>>>>>> */ 601 | .dropdown-menu.profile-dropdown img { 602 | width: 56px; 603 | height: 56px; 604 | } 605 | .dropdown-menu.profile-dropdown h5 { 606 | line-height: normal; 607 | } 608 | .profile-dropdown h5 span { 609 | padding-left: 5px; 610 | } 611 | .dropdown-item span { 612 | padding: 5px 10px; 613 | } 614 | /* <<<<<<<<<<<< User */ 615 | .sidebar-link-2 { 616 | color: var(--NormalHeadingColor); 617 | } 618 | 619 | /* Left sidebar compact */ 620 | .compact { 621 | width: 80px !important; 622 | .nav-caption .hide-menu{ 623 | display: inline-block; 624 | } 625 | .nav-caption{ 626 | text-align: center !important; 627 | } 628 | .nav-caption .mini-icon{ 629 | display: inline-block !important; 630 | } 631 | .hide-menu { 632 | display: none !important; 633 | } 634 | .sidebar-submenu .sidebar-item{ 635 | display: none !important; 636 | } 637 | .has-arrow::after { 638 | display: none !important; 639 | } 640 | .brand-logo { 641 | padding: 0 16px !important; 642 | } 643 | .brand-logo a { 644 | width: 40px !important; 645 | margin: 0 5px; 646 | overflow: hidden; 647 | } 648 | } 649 | .compact:hover{ 650 | .hide-menu { 651 | display: block !important; 652 | } 653 | .has-arrow::after { 654 | display: block !important; 655 | } 656 | .brand-logo { 657 | padding: 0 16px !important; 658 | } 659 | .brand-logo a { 660 | width: 100% !important; 661 | margin: 0 5px; 662 | overflow: hidden; 663 | } 664 | .nav-caption{ 665 | text-align: left !important; 666 | } 667 | .mini-icon{ 668 | display: none !important; 669 | } 670 | .sidebar-submenu .sidebar-item{ 671 | display: block !important; 672 | } 673 | } 674 | /* Left sidebar Expand */ 675 | .extend { 676 | margin-left: 80px !important; 677 | 678 | .topbar { 679 | width: calc(100% - 80px) !important; 680 | } 681 | } 682 | 683 | /* Body wrapper */ 684 | 685 | 686 | .body-wrapper { 687 | margin-left: 0; 688 | margin-top: 72px; 689 | margin-right: calc(30px / 2); 690 | margin-bottom: 30px; 691 | border-radius: 20px; 692 | background-color: var(--BodyColor); 693 | min-height: calc(100% - 102px); 694 | } 695 | .body-wrapper .container-fluid { 696 | padding: 30px; 697 | max-width: 1200px; 698 | margin: 0 auto; 699 | } 700 | .body-wrapper .card-color { 701 | color: var(--white); 702 | background-color: var(--sidebarTextBg); 703 | } 704 | .card { 705 | margin-bottom: 30px; 706 | border-radius: 12px !important; 707 | border: 0; 708 | } 709 | .card .card-body { 710 | padding: 30px; 711 | } 712 | .hstack { 713 | display: flex; 714 | flex-direction: row; 715 | align-items: center; 716 | align-self: stretch; 717 | } 718 | .hstack span.d-flex { 719 | width: 48px; 720 | height: 48px; 721 | background-color: var(--white); 722 | border-radius: 12px !important; 723 | } 724 | .hstack span svg.fs-4 { 725 | color: var(--HeaderContent); 726 | } 727 | .hstack h5 { 728 | color: var(--white); 729 | line-height: normal; 730 | } 731 | .num h4{ 732 | line-height: 20px; 733 | } 734 | .c-white { 735 | color: var(--white); 736 | font-size: 22px; 737 | } 738 | .body-wrapper .border-0 { 739 | box-shadow: 0px 2px 4px -1px rgba(175, 182, 201, 0.2); 740 | } 741 | .body-wrapper .border-0 { 742 | padding-left: 30px; 743 | padding-right: 30px; 744 | } 745 | .body-wrapper .card-title { 746 | font-size: 18px; 747 | } 748 | .text-dark { 749 | color: var(--search-color); 750 | } 751 | .form-check-input:checked { 752 | background-color: var(--sidebarTextBg); 753 | border-color: var(--sidebarTextBg); 754 | } 755 | .form-check-input:focus { 756 | box-shadow: none !important; 757 | } 758 | .silver .text-uppercase { 759 | color: var(--white); 760 | } 761 | .silver { 762 | border: 0; 763 | } 764 | .silver .list-unstyled span { 765 | font-size: 14px; 766 | } 767 | .purple { 768 | background-color: var(--sidebarTextBg); 769 | color: var(--white); 770 | } 771 | .grey{ 772 | font-size: 15px; 773 | color: var(--textColor); 774 | } 775 | .hstack .dark-blue{ 776 | border-radius: 12px !important; 777 | } 778 | .hstack h6.text-nowrap{ 779 | font-size: 15px; 780 | } 781 | .text-mute{ 782 | color: var(--HeaderContent); 783 | font-size: 15px; 784 | } 785 | .label-1{ 786 | position: absolute; 787 | width: 24px; 788 | left: 0; 789 | right: 0; 790 | margin: 0 auto; 791 | top: -3px; 792 | } 793 | .label-2{ 794 | position: absolute; 795 | right: 0; 796 | top: 50%; 797 | } 798 | .label-3{ 799 | position: absolute; 800 | width: 40px; 801 | left: 0; 802 | right: 0; 803 | margin: 0 auto; 804 | bottom: 0; 805 | text-align: center; 806 | } 807 | .label-4{ 808 | position: absolute; 809 | left: 0; 810 | top: 50%; 811 | } 812 | 813 | 814 | /* Card */ 815 | 816 | .form-select { 817 | display: block; 818 | padding: 10px 38px 10px 16px; 819 | line-height: 1.5; 820 | color: var(--link-color); 821 | background-color: transparent; 822 | border-radius: 8px; 823 | } 824 | 825 | .table-responsive .nav .nav-item .nav-link { 826 | border-radius: 12px; 827 | padding: 12px 24px; 828 | font-weight: 600; 829 | font-size: 14px; 830 | background-color: #f6f7f9; 831 | color: var(--link-color); 832 | } 833 | 834 | .table-responsive .nav .nav-item .nav-link.active { 835 | background-color: var(--sidebarTextBg ); 836 | color: var(--white); 837 | } 838 | 839 | .table-responsive .nav .nav-item:hover .nav-link { 840 | background-color: rgb(99 91 255 / 20%); 841 | } 842 | 843 | .assign { 844 | padding: 14px 24px !important; 845 | } 846 | .round-48{ 847 | border-radius: 12px !important; 848 | } 849 | .last-items-borderless tr:last-child td { 850 | border-bottom: 0; 851 | } 852 | #settlements{ 853 | min-height: 270px !important; 854 | } 855 | 856 | /* Modal-scroll */ 857 | 858 | .message-body .simplebar-wrapper::-webkit-scrollbar { 859 | height: 48px; 860 | width: 7px; 861 | } 862 | .message-body .simplebar-wrapper::-webkit-scrollbar-thumb{ 863 | background-color: rgba(0, 0, 0, .2); 864 | border-radius: 10px; 865 | visibility: hidden; 866 | } 867 | .message-body:hover ::-webkit-scrollbar-thumb { 868 | visibility: visible; 869 | } 870 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Bold.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Bold.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-ExtraBold.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-ExtraBold.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-ExtraLight.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-ExtraLight.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Light.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Light.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Medium.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Medium.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Regular.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-Regular.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-SemiBold.woff -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/font/Manrope-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/font/Manrope-SemiBold.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/bronze.png -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/dash-prd-1 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/dash-prd-1 (1).jpg -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/dash-prd-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/dash-prd-2.jpg -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/dash-prd-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/dash-prd-3.jpg -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/dash-prd-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/dash-prd-4.jpg -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/favicon.png -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/gold.png -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/icon-flag-cn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ic_flag_cn 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/icon-flag-en.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/icon-flag-fr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/icon-flag-sa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ic_flag_sa 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/mega-dd-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/mega-dd-bg.jpg -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/silver.png -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/user-1.jpg -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/img/welcome-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/img/welcome-bg.png -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/js/jquery.preloadinator.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.preloadinator=function(e){"use strict";var o=a.extend({scroll:!1,minTime:0,animation:"fadeOut",animationDuration:400,afterDisableScroll:function(){},afterEnableScroll:function(){},afterRemovePreloader:function(){}},e),n=this,r=(new Date).getTime();return a.fn.preloadinator.disableScroll=function(){a("body").css("overflow","hidden"),"function"==typeof o.afterDisableScroll&&o.afterDisableScroll.call(this)},a.fn.preloadinator.enableScroll=function(){a("body").css("overflow","auto"),"function"==typeof o.afterEnableScroll&&o.afterEnableScroll.call(this)},a.fn.preloadinator.removePreloader=function(){a(n)[o.animation](o.animationDuration,function(){!1===o.scroll&&a.fn.preloadinator.enableScroll(),"function"==typeof o.afterRemovePreloader&&o.afterRemovePreloader.call(this)})},a.fn.preloadinator.minTimeElapsed=function(){return(new Date).getTime()-r>=o.minTime},!1===o.scroll&&a.fn.preloadinator.disableScroll(),a(window).on("load",function(){if(a.fn.preloadinator.minTimeElapsed())a.fn.preloadinator.removePreloader();else{var e=(new Date).getTime()-r;setTimeout(a.fn.preloadinator.removePreloader,o.minTime-e)}}),this}}(jQuery); -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-duotone-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-duotone-900.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-light-300.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-light-300.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-light-300.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-regular-400.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-regular-400.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-solid-900.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-solid-900.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-thin-100.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-sharp-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-sharp-thin-100.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-thin-100.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-thin-100.woff2 -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /J_Query/admin-panel/admin-panel/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/admin-panel/admin-panel/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /J_Query/css/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0px; 4 | } 5 | .container{ 6 | max-width: 1320px; 7 | margin: 0px auto; 8 | padding: 0px 15px; 9 | } 10 | .row{ 11 | display: flex; 12 | flex-wrap: wrap; 13 | } 14 | h3,h4,h5{ 15 | color: rgb(0, 88, 98); 16 | font-size: 40px; 17 | text-align: center; 18 | margin: 60px 0px; 19 | } 20 | /* MouseEvents */ 21 | .p1{ 22 | margin: 0px auto; 23 | background-color: rgb(46, 214, 214); 24 | width: 170px; 25 | height: 130px; 26 | 27 | } 28 | .p2{ 29 | background-color: #18c5bc; 30 | margin: 0px auto; 31 | width: 170px; 32 | height: 130px; 33 | } 34 | /* Focus , Blur , KeyEvents */ 35 | input{ 36 | outline: inherit ; 37 | margin: 30px 0px; 38 | } 39 | form{ 40 | display: block; 41 | text-align: center; 42 | background-color: #c0e6e6; 43 | } 44 | /* Fadeeffects */ 45 | .part1{ 46 | background-color: #c0e6e6; 47 | display: flex; 48 | border-radius: 15px; 49 | align-items: center; 50 | width: 100%; 51 | height: 200px; 52 | } 53 | .box{ 54 | width: 150px; 55 | height: 100px; 56 | background-color: #ca1616; 57 | margin: 0px 30px; 58 | border-radius: 10px; 59 | } 60 | a{ 61 | background-color: #d6d32a; 62 | padding: 15px 10px; 63 | color: #fff; 64 | text-decoration: none; 65 | border-radius: 10px; 66 | margin-left: 15px; 67 | vertical-align: middle; 68 | cursor: pointer; 69 | } 70 | /* SlideToggle / Accordian */ 71 | .box2{ 72 | width: 100%; 73 | height: auto; 74 | background-color: #c0e6e6; 75 | border-top-left-radius: 20px; 76 | border-top-right-radius: 20px; 77 | border-bottom-left-radius: 20px; 78 | border-bottom-right-radius: 20px; 79 | } 80 | .box2 h2{ 81 | background-color: #2fbff3; 82 | color: #fff; 83 | font-size: 30px; 84 | padding: 10px 30px; 85 | border-top-left-radius: 20px; 86 | border-top-right-radius: 20px; 87 | } 88 | .box2 p{ 89 | background-color: #b0e3e8; 90 | color: #11161d; 91 | display: none; 92 | font-size: 18px; 93 | padding: 20px 30px; 94 | border-bottom-left-radius: 20px; 95 | border-bottom-right-radius: 20px; 96 | } 97 | /* Append / Prepend / Remove / Empty */ 98 | ul , ul li{ 99 | list-style: none; 100 | display: flex; 101 | padding: 0; 102 | } 103 | .box2 ul{ 104 | margin: 30px auto; 105 | } 106 | .box2 a{ 107 | display: inline-block; 108 | margin: 40px; 109 | margin-bottom: 30px; 110 | text-align: center; 111 | } 112 | .box1{ 113 | width: 150px; 114 | height: 100px; 115 | background-color: #0fca66; 116 | margin: 0px 30px; 117 | border-radius: 10px; 118 | } 119 | .box3{ 120 | width: 100%; 121 | height: auto; 122 | background-color: #c0e6e6; 123 | border-top-left-radius: 20px; 124 | border-top-right-radius: 20px; 125 | border-bottom-left-radius: 20px; 126 | border-bottom-right-radius: 20px; 127 | } 128 | .box3 a{ 129 | background-color: #c0e6e6; 130 | display: inline-block; 131 | padding: 2px 5px; 132 | border: 2px solid black; 133 | border-radius: 3px; 134 | margin: 20px 10px 10px 20px; 135 | } 136 | a i{ 137 | font-size: 25px; 138 | color: #000; 139 | } 140 | nav{ 141 | display: none; 142 | } 143 | .block{ 144 | display: block; 145 | } 146 | nav ul { 147 | display: flex; 148 | flex-direction: column; 149 | background-color: #cfa5c5; 150 | border-bottom-left-radius: 20px; 151 | border-bottom-right-radius: 20px; 152 | } 153 | .box3 ul li a{ 154 | background-color: #d6d32a; 155 | padding: 15px 10px; 156 | color: #fff; 157 | text-decoration: none; 158 | border-radius: 10px; 159 | border: 0; 160 | } -------------------------------------------------------------------------------- /J_Query/css/swiper-bundle.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Swiper 11.1.0 3 | * Most modern mobile touch slider and framework with hardware accelerated transitions 4 | * https://swiperjs.com 5 | * 6 | * Copyright 2014-2024 Vladimir Kharlampidi 7 | * 8 | * Released under the MIT License 9 | * 10 | * Released on: March 28, 2024 11 | */ 12 | 13 | @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden} -------------------------------------------------------------------------------- /J_Query/css/swiper.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | margin: 0px; 4 | } 5 | html, 6 | body { 7 | position: relative; 8 | height: 100%; 9 | } 10 | 11 | body { 12 | background: #eee; 13 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif; 14 | font-size: 14px; 15 | color: #000; 16 | margin: 0; 17 | padding: 0; 18 | } 19 | 20 | #main{ 21 | /* height:100%; 22 | width:100%; */ 23 | display: flex; 24 | align-items: center; 25 | justify-content: center; 26 | /* background-color: red; */ 27 | } 28 | .cursor{ 29 | height: 20px; 30 | width: 20px; 31 | background-color: white; 32 | mix-blend-mode: difference; 33 | border-radius: 50%; 34 | position: absolute; 35 | transition: all linear 0.1s; 36 | z-index: 1; 37 | } 38 | h1{ 39 | font-size: 90px; 40 | font-weight: 900; 41 | color: white; 42 | } 43 | 44 | .swiper { 45 | width: 100%; 46 | height: auto; 47 | margin-top: 50px; 48 | } 49 | 50 | .swiper-slide { 51 | text-align: center; 52 | font-size: 18px; 53 | background: #fff; 54 | width: 250px !important; 55 | } 56 | .menu-item { 57 | box-shadow: 0px 15px 55px rgba(34, 34, 34, 0.15); 58 | padding: 18px; 59 | border-radius: 10px; 60 | z-index: 1; 61 | width: 250px !important; 62 | } 63 | 64 | .swiper-slide img { 65 | display: block; 66 | width: 100%; 67 | height: 100%; 68 | object-fit: cover; 69 | } 70 | .menu-item .menu-detail { 71 | margin-bottom: 0.75rem; 72 | } 73 | .menu-detail p { 74 | margin-bottom: 0; 75 | font-weight: 400; 76 | font-size: 14px; 77 | line-height: 20px; 78 | } 79 | .menu-detail .dz-content h6 a { 80 | margin-bottom: 3px; 81 | transition-duration: 500ms; 82 | color: #000; 83 | font-size: 18px; 84 | display: flex; 85 | justify-content: flex-start !important; 86 | } 87 | .menu-item .dz-media { 88 | width: 60px; 89 | height: 60px; 90 | margin-right: 1.25rem; 91 | } 92 | .menu-item.style-4:before { 93 | content: ""; 94 | height: 0; 95 | width: 0; 96 | background-color: #432; 97 | transition: all 0.5s ease; 98 | position: absolute; 99 | bottom: 0; 100 | right: 0; 101 | border-radius: 100%; 102 | z-index: -1; 103 | } 104 | .menu-item:hover:before { 105 | height: 120px; 106 | width: 120px; 107 | transform: scale(6); 108 | right: 40%; 109 | opacity: 1; 110 | visibility: visible; 111 | z-index: -1; 112 | } 113 | .menu-footer { 114 | max-width: 110px; 115 | } 116 | .menu-footer span { 117 | font-size: 13px; 118 | color: #222; 119 | } 120 | .menu-footer span.price { 121 | font-size: 18px; 122 | color: #fe9f10; 123 | font-weight: 600; 124 | padding-right: 22px; 125 | } 126 | .detail-btn { 127 | background-color: #fe9f10; 128 | width: 48px; 129 | height: 48px; 130 | line-height: 48px; 131 | color: #fff; 132 | border-radius: 10px 0px; 133 | } 134 | .swiper-slide:hover .menu-detail p{ 135 | color: #fe9f10; 136 | } 137 | .swiper-slide:hover .menu-detail .dz-content h6 a { 138 | color: #fff; 139 | } 140 | .swiper-slide:hover .menu-footer span{ 141 | color: #fe9f10; 142 | } 143 | .swiper-slide:hover .menu-footer span.price { 144 | color: #fff; 145 | } 146 | .swiper-slide:hover .detail-btn { 147 | background-color: #fff; 148 | color: #fe9f10; 149 | } 150 | .swiper-slide:hover .detail-btn i { 151 | animation: dzRotate360 8s linear infinite; 152 | } 153 | a { 154 | text-decoration: none; 155 | } 156 | @keyframes dzRotate360 { 157 | 0% { 158 | transform: rotate(0deg); 159 | } 160 | 161 | 100% { 162 | transform: rotate(360deg); 163 | } 164 | } 165 | 166 | @keyframes MoveScaleUpEnd { 167 | 0% { 168 | transform: translate3d(0, 100%, 0) scale3d(1, 2, 1); 169 | opacity: 0; 170 | } 171 | 100% { 172 | transform: translate3d(0, 0, 0); 173 | opacity: 1; 174 | } 175 | } 176 | .swiper-pagination{ 177 | visibility: hidden !important; 178 | opacity: 0 !important; 179 | } -------------------------------------------------------------------------------- /J_Query/img/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /J_Query/img/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic1.png -------------------------------------------------------------------------------- /J_Query/img/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic2.png -------------------------------------------------------------------------------- /J_Query/img/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic3.png -------------------------------------------------------------------------------- /J_Query/img/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic4.png -------------------------------------------------------------------------------- /J_Query/img/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic5.png -------------------------------------------------------------------------------- /J_Query/img/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic6.png -------------------------------------------------------------------------------- /J_Query/img/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic7.png -------------------------------------------------------------------------------- /J_Query/img/pic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic8.png -------------------------------------------------------------------------------- /J_Query/img/pic9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/img/pic9.png -------------------------------------------------------------------------------- /J_Query/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Document 9 | 10 | 16 | 17 |

MouseEvents

18 |
19 |
20 |
21 |
22 |

Focus / Blur / KeyEvents

23 |
24 | 25 |

keypress :-

26 | 27 |
28 |

Fadeeffects

29 |
30 |
31 |
32 |
33 |
34 | FadeIn 35 | FadeOut 36 | FadeToggle 37 |
38 |
39 |
40 |

SlideToggle / Accordian

41 |
42 |
43 |

Slide 44 | 45 |

46 |

47 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolore, asperiores ut tempora iste enim temporibus, nulla iure velit aut quasi non? Incidunt ipsa temporibus fugit, necessitatibus explicabo dignissimos sint aperiam eaque alias culpa tempora quod quos quaerat repudiandae corrupti blanditiis voluptatum ipsum sunt veritatis in exercitationem sed praesentium! Pariatur a optio suscipit enim consectetur illo blanditiis accusantium iure, accusamus exercitationem molestias tempora provident, incidunt ab repellendus vel sit velit error cupiditate voluptas dignissimos eius quo omnis fugit. Enim iusto recusandae velit fugit exercitationem assumenda reiciendis aliquam officia quis distinctio, id, nisi dolorum veritatis ab eveniet corrupti illo modi eligendi facere alias hic perferendis! Accusantium at minima perspiciatis repellat, autem veniam. Error laboriosam perferendis dolorum harum quae alias cum hic, animi voluptas impedit placeat nesciunt, quia, quis vitae! Repellat corrupti eum minus magnam ipsam! Voluptate, alias. Sint necessitatibus fuga 48 |

49 |
50 |
51 |

Append / Prepend / Remove / Empty

52 |
53 |
54 |
    55 |
  • 56 |
  • 57 |
  • 58 |
  • 59 |
60 | Append + 61 | Prepend + 62 | Remove - 63 | Empty __ 64 |
65 |
66 |

ToogleClass

67 |
68 |
69 | 70 | 71 | 72 | 88 |
89 |
90 |
91 | 92 | 93 | 94 | 95 | 159 | 160 | -------------------------------------------------------------------------------- /J_Query/swiper.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Swiper demo 7 | 11 | 12 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 |

Cursor

29 |
30 | 31 |
32 |
33 |
34 | 57 |
58 |
59 | 82 |
83 |
84 | 107 |
108 |
109 | 132 |
133 |
134 | 157 |
158 |
159 | 182 |
183 |
184 | 207 |
208 |
209 | 232 |
233 |
234 | 257 |
258 |
259 |
260 |
--> 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 279 | 290 | -------------------------------------------------------------------------------- /J_Query/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-duotone-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-duotone-900.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-light-300.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-light-300.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-light-300.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-regular-400.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-regular-400.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-solid-900.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-solid-900.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-thin-100.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-sharp-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-sharp-thin-100.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-thin-100.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-thin-100.woff2 -------------------------------------------------------------------------------- /J_Query/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /J_Query/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/j_query/a73380cfd49204bb88dcaa0c937108cc1f7e6cdb/J_Query/webfonts/fa-v4compatibility.woff2 --------------------------------------------------------------------------------