HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/drakkar_site_dev/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,
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: inherit;
	// font-size: inherit;
	// text-align: inherit; // causes problems on buttons without type
	// line-height: inherit;
}


input,
select,
textarea {
	margin: 0;
}

b,
strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

small {
	font-size: 80%;
}

ins,
mark {
	color: inherit;
	text-decoration: none;
	background: transparent;
}

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;
}

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

// focus
a,
button {
	&:focus {
		transition: none;
		outline-width: 0;
	}

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

// 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;
}

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

pre,
code,
samp,
kbd {
	tab-size: 4;
	border-radius: 3px;
	background: var(--theme-palette-color-6);

	&: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(--theme-table-font-size);
	border-width: var(--theme-table-border-width, 1px);
	border-style: var(--theme-table-border-style, solid);
	border-color: var(--theme-table-border-color, var(--theme-border-color));
}

th,
td {
	padding: var(--theme-table-padding, 0.7em 1em);
}

th {
	font-weight: 600;
}

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

// Definition List ---------------------------
dl {
	--theme-description-list-indent: 1.5em;
	--theme-description-list-spacing: 0.5em;

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

dt {
	font-weight: 600;
}

dd {
	margin-top: calc(var(--theme-description-list-spacing) / 2);
	margin-left: var(--theme-description-list-indent);
	margin-bottom: calc(var(--theme-description-list-spacing) * 2);

	p {
		--theme-content-spacing: var(--theme-description-list-spacing);

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