%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/egp/web/assets/e17cda08/build/scss/ |
Upload File : |
// // Misc: Colors // // Background colors (theme colors) @each $name, $color in $theme-colors { @include background-variant($name, $color); } // Background colors (colors) @each $name, $color in $colors { @include background-variant($name, $color); } .bg-gray { background-color: $gray-500; color: color-yiq($gray-500); } .bg-gray-light { background-color: lighten($gray-200, 3%); color: color-yiq(lighten($gray-200, 3%)) !important; } .bg-black { background-color: $black; color: color-yiq($black) !important; } .bg-white { background-color: $white; color: color-yiq($white) !important; } // Gradient Background colors (theme colors) @each $name, $color in $theme-colors { @include background-gradient-variant($name, $color); } // Gradient Background colors (colors) @each $name, $color in $colors { @include background-gradient-variant($name, $color); } // Backgrund Color Disabled [class^="bg-"].disabled { opacity: .65; } // Text muted hover a.text-muted:hover { color: theme-color(primary) !important; } // Link Styles .link-muted { color: darken($gray-500, 30%); &:hover, &:focus { color: darken($gray-500, 40%); } } .link-black { color: $gray-600; &:hover, &:focus { color: lighten($gray-500, 20%); } } // Accent colors (theme colors) @each $name, $color in $theme-colors { @include accent-variant($name, $color); } // Accent colors (colors) @each $name, $color in $colors { @include accent-variant($name, $color); } // Accent button override fix [class*="accent-"] { @each $name, $color in $theme-colors { a.btn-#{$name} { color: color-yiq($color); } } } .dark-mode { .bg-light { background-color: lighten($dark, 7.5%) !important; color: $white !important; } .text-black, .text-dark, .link-black, .link-dark { color: $gray-400; } }