HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/dreamssalon-wp-market/landing/assets/scss/base/_base.scss
@use "../utils/mixins";
@use "../utils/variables";

/*============================
  3.base
============================*/

body {
	font-family: variables.$font-family-primary;
	font-size: variables.$font-size-16;
	color: variables.$text-color;
	line-height: 1.5;
	overflow-y: auto;
	overflow-x: hidden;
}
::selection {
  background: variables.$primary;
  color: variables.$white;
  text-shadow: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
*{
	outline: none;
}
button {
	@include mixins.transition(all 0.5s ease);
	&:focus {
		box-shadow: none !important;
	}
}
p {
	margin-bottom:20px;
	&:last-child {
		margin-bottom: 0;
	}
}
strong {
	font-weight: variables.$font-weight-bold;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  	color: variables.$title-color;
  	font-family: variables.$font-family-primary;
	font-weight: variables.$font-weight-bold;
  	margin-bottom: 0;
	line-height: 1.2;
}
ol, ul {
  list-style: none;
  margin-block-end: 0;
  padding: 0;
}
ul {
  list-style: none;
	&.list-disc {
	  list-style: disc;
	  padding-left: 15px;
	  ul {
	    list-style-type: circle;
	  }
	}
	&.list-decimal {
	  list-style: decimal;
	  padding-left: 15px;
	  ul{
	    list-style-type: decimal;
	  }
	}
	&.list-icon {
	  list-style: none;
	  padding-left: 0;
	  > li {
	    padding-left: 1.875rem;
	    counter-increment: li;
	    i,
	    .feather-icon,
	    .svg-icon {
	      display: inline-block;
	      height: 20px;
	      width: 20px;
	      text-align: center;
	      margin-left: -1.25rem;
	      position: relative;
	      left: -10px;
	      padding: 1px;
	      top: -1px;
	      
	    }
	    i {
	      font-size: variables.$font-size-20;
	      top: 5px;
	    }
	  }
	}
	.btn {
	  &-primary {
	      &:not(:disabled):not(.disabled) {
	          &:active,
	          &.active {
	              &:focus {
	                  box-shadow: none;
	              	}
	          	}
	      	}
	  	}
	}
}