42 lines
761 B
CSS
42 lines
761 B
CSS
|
|
/* CSS Reset and Base Styles - Shared across all pages */
|
||
|
|
|
||
|
|
/* Reset styles */
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Base typography */
|
||
|
|
body {
|
||
|
|
font-family: "Inter", sans-serif;
|
||
|
|
line-height: 1.6;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Font imports - can be customized per page */
|
||
|
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap");
|
||
|
|
|
||
|
|
/* Base accessibility */
|
||
|
|
:focus {
|
||
|
|
outline: 2px solid #3b82f6;
|
||
|
|
outline-offset: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Base link styles */
|
||
|
|
a {
|
||
|
|
color: inherit;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Base list styles */
|
||
|
|
ul, ol {
|
||
|
|
list-style: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Base image styles */
|
||
|
|
img {
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
}
|