Upload your stylesheet and get a shareable download link
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Navigation styles */
.navbar {
display: flex;
justify-content: space-between;
padding: 1rem 2rem;
background-color: #0d6efd;
color: white;
}
/* Button styles */
.btn {
padding: 0.5rem 1rem;
border-radius: 5px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background-color: #0d6efd;
color: white;
}
/* Responsive grid */
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1rem;
}