Spaces:
Sleeping
Sleeping
File size: 332 Bytes
113b6b6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
/* assets/styles.css */
.navbar {
background-color: #333;
padding: 10px;
}
.nav-link {
color: white;
margin-right: 15px;
text-decoration: none;
}
.nav-link:hover {
text-decoration: underline;
}
.home-content, .explorer-content {
padding: 20px;
}
.logo {
max-width: 200px;
margin-top: 20px;
}
|