mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-25 05:42:27 +00:00
53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-color: #F8F9FA;
|
|
color: #2D3748;
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #F8F9FA;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #CBD5E0;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #A0AEC0;
|
|
}
|
|
|
|
/* Smooth transitions */
|
|
a, button {
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
/* Remove focus outline for mouse users, keep for keyboard users */
|
|
:focus:not(:focus-visible) {
|
|
outline: none;
|
|
}
|
|
|
|
/* Keep focus outline for keyboard users */
|
|
:focus-visible {
|
|
outline: 2px solid #00A7E1;
|
|
outline-offset: 2px;
|
|
}
|