PATH:
home
/
rwabteecom
/
project_11
/
storage
/
framework
/
views
/
Editing: 65413ef22bfbe102403ff36cce0fb217.php
<?php $domain = currentDomainFromUrl()->currentTheme; ?> * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; font-family: "<?php echo e($domain->font); ?>", sans-serif; color:<?php echo e($domain->text_color); ?> } html{ background:#FFF; } a { text-decoration: none; } body{ overflow-x:hidden; <?php if($domain->background_style == 'solid'): ?> background: <?php echo e($domain->background_color); ?>; <?php elseif($domain->background_style == 'gradient'): ?> background:linear-gradient(<?php echo e($domain->background_direction); ?>, <?php echo e($domain->background_first_color); ?>, <?php echo e($domain->background_second_color); ?>); <?php elseif($domain->background_style == 'image'): ?> background:url("<?php echo e(currentDomainFromUrl()->backgroundImg); ?>"); background-repeat: no-repeat; background-position: center; background-size: cover; <?php endif; ?> } .contenter{ min-height:100vh; } .custom-container{ width: 450px; margin: auto; } @media(max-width:589px){.custom-container{width: 380px;}} @media(max-width:391px){.custom-container{width: 95%;}} .social-icon{ width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin:4px } .social-icon i { width:14px; height:14px; display: flex; align-items: center; justify-content: center; } .social-icon.backgrounder i{ font-size: 13px; } .senond-preview-iframe .picxels-bg { position: absolute; width: 100%; height: 100%; opacity: .7; top: 0; left: 0; } .senond-preview-iframe .picxels-bg img { width: 100%; height: 100%; position: absolute; } .senond-preview-iframe .picxels-bg .pixels-img { opacity: .3; } .senond-preview-iframe .picxels-bg .bg-oval { opacity: .2; } .preview-top-img-con { width: 65px; height: 65px; position: relative; } .preview-top-img-con img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover } .preview-top-img-con .verify-span { position: absolute; bottom: -1px; right: -1px; } .user-preview-top .preview-name { font-size: 16px; font-weight: 600; line-height: 18px; } .user-preview-top .preview-intro { font-size: 14px; font-weight: 300; line-height: 15px; } .second-preview-social a { width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; margin: 5px; border-radius: 50%; background-color: #0052F1; } .preview-followers-con p { font-size: 16px; font-weight: 500; line-height: 18px; letter-spacing: -0.017em; } .preview-followers-con span { font-size: 14px; font-weight: 400; line-height: 16.5px; letter-spacing: -0.025em; } .grid-link-con { cursor: pointer; border-radius: 5px; cursor: pointer; } .grid-link-con .preview-link-icon { width: 100%; height: 81px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; align-items: center; justify-content: center; } .grid-link-con .preview-link-icon img { width: 100%; height: 100%; border-top-left-radius: 6px; border-top-right-radius: 6px; object-fit: cover; } .lock-link { border: none; display: flex; align-items: center; justify-content: center; width: 25px; height: 100%; border-radius: 50%; } .preview-bottom p { font-size: 12px; font-weight: 400; line-height: 12px; text-align: center; } .domain-logo-container{ display: flex; justify-content: center; align-items: center; width: 65px; height: 65px; border-radius: 50%; color: #fff; font-weight: bold; background-color: #5a5a5a; font-size: 25px; } <?php // Convert hexadecimal color to RGB components $hexColor = $domain->button_shadow_color; $red = hexdec(substr($hexColor, 0, 2)); $green = hexdec(substr($hexColor, 2, 2)); $blue = hexdec(substr($hexColor, 4, 2)); ?> .divider { width:100%; height:10px; background:#000; height:1px; } .divider.medium{ height:3px; } .divider.large{ height:5px; } .follow-btn{ padding : 4px 10px; } .full-width-link-con { height: 36px; width: 100%; background-color: none; border-radius: 18px; padding: 2px; cursor: pointer; } .Shinny{background:none} .full-width-link-con .preview-link-icon { width: 32px; min-width: 32px; height: 32px; border-radius: 50%; } .full-width-link-con .preview-link-icon img { width: 100%; height: 100%; border-radius: 50%; } .preview-link-name { font-weight: 500; width: 100%; overflow: hidden; white-space: nowrap; } .full-width-link-con .link-preview-data{ width:100%; } .full-width-link-con .link-preview-data.has-img{ width:calc(100% - 32px) } .grid-link-con .link-preview-data{ width:100% } .passwordModal .modal-content { max-width: 400px; } .passwordModal .modal-footer, .passwordModal .modal-header { border: none; } .passwordModal h4 { font-weight: 600; line-height: 45px; letter-spacing: 0em; color: var(--black-color); } .passwordModal p { font-weight: 400; line-height: 33px; letter-spacing: 0em; color: #454545; } .passwordModal .modal-footer button { background-color: transparent; border: none; font-weight: 600; line-height: 29px; letter-spacing: 0em; color: #949494; } .passwordModal .modal-footer button.delete-link { color: #C42F29; } .location-lonk{ color:<?php echo e($domain->text_color); ?>; font-size: 14px; font-weight: 400; line-height: 16.5px; } .marked-content-data * { margin: 0 !important; } .custom-button{ background:<?php echo e($domain->button_background); ?>; color:<?php echo e($domain->button_color); ?>; opacity:<?php echo e(1-$domain->button_transparency / 100); ?>; border-radius:<?php echo e($domain->button_border_radius); ?>px; border-width:<?php echo e($domain->button_border_width); ?>px; border-style:solid; border-color:<?php echo e($domain->button_border_color); ?>; box-shadow:<?php echo e($domain->button_shadow_xoffset); ?>px <?php echo e($domain->button_shadow_yoffset); ?>px <?php echo e($domain->button_shadow_blur); ?>px <?php echo e($domain->button_shadow_spread); ?>px rgba(<?php echo e($red); ?>,<?php echo e($green); ?>,<?php echo e($blue); ?>,.<?php echo e(100-$domain->button_shadow_transparency); ?>); font-family:"<?php echo e($domain->button_font); ?>"; font-weight:<?php echo e($domain->button_text_weight); ?>; padding-top: 7px !important; padding-bottom: 7px !important; } .custom-button *{ color:<?php echo e($domain->button_color); ?>; } .grid-link-con .custom-button{ padding-right: 14px !important; padding-left: 14px !important; }<?php /**PATH /home/rwabteecom/project/resources/views/dashboard/partials/custom-css.blade.php ENDPATH**/ ?>
SAVE
CANCEL