start rebuild main.css

This commit is contained in:
2025-11-17 12:18:29 +01:00
parent 519cc907af
commit e0502f93d6

View File

@@ -0,0 +1,56 @@
/*
* A modern CSS reset and some basic site-wide styles.
* This ensures more consistent styling across different browsers.
*/
/* Box-sizing reset */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Reset margins and paddings on most elements */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
margin: 0;
}
/* Basic body styling */
body {
min-height: 100vh;
line-height: 1.5;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
background-color: #f0f2f5;
color: #333;
}
/* Make images responsive */
img,
picture {
max-width: 100%;
display: block;
}
/* Basic styling for a container */
.container {
width: 90%;
max-width: 1200px;
margin: 2rem auto;
padding: 2rem;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}