HEX
Server: Apache
System: Linux b5.s-host.com.ua 4.18.0-305.10.2.el7.x86_64 #1 SMP Fri Jul 23 21:00:55 UTC 2021 x86_64
User: unelbhzm (1470)
PHP: 8.0.18
Disabled: NONE
Upload Files
File: /sites/nuofama.com/wp-content/themes/blocksy/static/sass/frontend/2-basics/reset.scss
html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	overflow-wrap: break-word;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
em,
ol,
ul,
li,
tr,
th,
td,
dl,
img,
ins,
sub,
sup,
big,
cite,
code,
form,
small,
label,
table,
figure,
button,
legend,
strike,
address,
caption,
fieldset,
blockquote {
	margin: 0;
	padding: 0;
	border: none;
	
	font-size: inherit;
	text-align: inherit;
	line-height: inherit;
}


input,
select,
textarea {
	margin: 0;
}

b,
strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

small {
	font-size: 80%;
}

ins {
	text-decoration: none;
}

del {
	opacity: 0.5;
}

sup,
sub {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

hr {
	height: 1px;
	border: none;
}

mark {
	color: inherit;
	font-weight: 600;
	background: transparent;
}

a {
	transition: var(--transition);
}

// focus
a,
button {
	// &:focus {
	// 	transition: none;
	// 	outline-offset: var(--outline-offset, 3px);
	// 	outline-color: var(--paletteColor2);
	// }

	&:focus {
		transition: none;
		outline-width: 0;
	}

	&:focus-visible {
		outline-width: 2px;
		outline-offset: var(--outline-offset, 3px);
		outline-color: var(--paletteColor2);
	}
}

// Media -------------------------------------
img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

figure,
iframe,
textarea {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
}

embed,
iframe,
object,
video {
	max-width: 100%;
}

svg > * {
	transition: none;
}

// Lists -------------------------------------
ul {
	list-style-type: var(--listStyleType, disc);
}

ol {
	list-style-type: var(--listStyleType, decimal);
}

// Code --------------------------------------
code,
kbd,
samp {
	padding: 3px 6px;
}

code,
kbd,
samp,
pre {
	tab-size: 4;
	border-radius: 2px;
	// background: rgba(233, 235, 239, 0.5);
	background: var(--paletteColor6);

	&:focus {
		outline: none;
	}
}

pre {
	overflow: auto;
	padding: 15px 20px;

	code {
		padding: 0;
		background: transparent;
	}
}

// Tables ------------------------------------
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	width: 100%;
	max-width: 100%;
}

table,
th,
td {
	font-size: var(--table-font-size);
	border-width: var(--table-border-width, 1px);
	border-style: var(--table-border-style, solid);
	border-color: var(--table-border-color, var(--border-color));
}

th,
td {
	// text-align: left;
	padding: var(--table-padding, 0.7em 1em);
}

th {
	font-weight: 600;
}

caption {
	font-weight: 600;
	padding: 0.7rem;
}

// Definition List ---------------------------
dl {
	--descListIndent: 1.5em;
	--descListSpacing: 0.5em;

	> *:last-child {
		margin-bottom: 0;
	}
}

dt {
	font-weight: 600;
}

dd {
	margin-top: calc(var(--descListSpacing) / 2);
	margin-left: var(--descListIndent);
	margin-bottom: calc(var(--descListSpacing) * 2);

	p {
		--content-spacing: var(--descListSpacing);

		&:last-child {
			margin-bottom: 0;
		}
	}
}