Cybersecurity-Projects/PROJECTS/advanced/honeypot-network/frontend/src/styles/_reset.scss

75 lines
937 B
SCSS

// ©AngelaMos | 2026
// _reset.scss
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
body {
font-family: var(--font-mono);
font-size: 13px;
line-height: 1.5;
color: var(--text-primary);
background: var(--bg-base);
min-height: 100vh;
}
a {
color: inherit;
text-decoration: none;
}
button {
cursor: pointer;
font: inherit;
color: inherit;
background: none;
border: none;
}
input,
select,
textarea {
font: inherit;
color: inherit;
}
table {
border-collapse: collapse;
width: 100%;
}
img,
svg {
display: block;
max-width: 100%;
}
ul,
ol {
list-style: none;
}
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--border-hard);
}