backend-bananza / style.css
GummyBall's picture
make me a frontend system for my pc
2175e6d verified
raw
history blame contribute delete
814 Bytes
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f7fafc;
color: #1a202c;
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.hero {
background-size: cover;
background-position: center;
}
.feature-card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
/* Dashboard specific styles */
#processList tr:hover {
background-color: #f8fafc;
}
canvas {
width: 100% !important;
height: 100% !important;
}