56 lines
921 B
CSS
56 lines
921 B
CSS
/*
|
|
* 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);
|
|
} |