62 lines
1.4 KiB
CSS
62 lines
1.4 KiB
CSS
/* base.css
|
|
* Tanggung Jawab: Reset CSS, definisi variabel warna premium, dan tipografi dasar.
|
|
*/
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
:root {
|
|
/* Color Palette - Minimalist & Elegant */
|
|
--primary: #4F46E5;
|
|
--primary-hover: #4338CA;
|
|
--secondary: #10B981;
|
|
--background: #F3F4F6;
|
|
--surface: #FFFFFF;
|
|
--surface-glass: rgba(255, 255, 255, 0.85);
|
|
--text-main: #111827;
|
|
--text-muted: #6B7280;
|
|
--border: #E5E7EB;
|
|
--danger: #EF4444;
|
|
|
|
/* Shadows & Effects */
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
--radius-md: 12px;
|
|
--radius-lg: 16px;
|
|
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: var(--background);
|
|
color: var(--text-main);
|
|
display: flex;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-weight: 600;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
/* Scrollbar minimalis */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #CBD5E1;
|
|
border-radius: 10px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #94A3B8;
|
|
}
|