provisioning-outreach/presentations/rust-laspalmas-250926/auroraframe/shared/css/base/reset.css

42 lines
761 B
CSS
Raw Permalink Normal View History

/* 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;
}