botascopia-webiste-static/assets/css/_base.scss

47 lines
844 B
SCSS
Raw Normal View History

2026-01-09 12:23:22 +01:00
*{
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
scroll-behavior: smooth;
}
body {
font-family: var(--font);
font-size: var(--fs-normal);
line-height: 1.2;
color: var(--color-text);
/* -webkit-print-color-adjust:exact !important;
print-color-adjust:exact !important; */
}
2026-02-11 11:27:05 +01:00
main:not(#main_home){
2026-01-09 12:23:22 +01:00
min-height: calc(100vh - var(--header-h));
2026-02-11 11:27:05 +01:00
max-width: 900px;
margin-inline: auto;
2026-01-12 21:19:10 +01:00
// margin-top: var(--header-h);
2026-01-09 12:23:22 +01:00
/* padding: var(--padding-body); */
}
2026-02-11 11:27:05 +01:00
2026-01-09 12:23:22 +01:00
button{
background: none;
border: none;
}
2026-02-15 16:49:03 +01:00
figure, picture, img{
width: 100%;
}
.link-block{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
cursor: pointer;
}