Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KendallDoesCoding authored Sep 29, 2023
1 parent 8080192 commit 72283e3
Showing 1 changed file with 0 additions and 64 deletions.
64 changes: 0 additions & 64 deletions artists/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,70 +8,6 @@
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/styles.css">
<link href="favicon.ico" rel="icon" type="image/x-icon">
<style>
/* Global CSS styles go here */

body {
font-family: "Roboto", sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}

header {
background-color: #496C42;
color: white;
padding: 20px;
text-align: center;
}

header a {
text-decoration: none;
color: white;
}

h1 {
font-size: 24px;
}

.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}

.artist-card {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s;
}

.artist-card:hover {
transform: scale(1.05);
}

.artist-card img {
max-width: 100%;
height: auto;
border-radius: 10px;
}

.artist-name {
margin-top: 10px;
font-weight: bold;
}

.artist-description {
font-size: 14px;
color: #666;
}
</style>
</head>
<body>
<header>
Expand Down

0 comments on commit 72283e3

Please sign in to comment.