arimelody-web/admin/static/edit-artist.css

113 lines
1.8 KiB
CSS
Raw Normal View History

2024-09-03 08:07:45 +01:00
h1 {
margin: 0 0 1em 0;
}
#artist {
margin-bottom: 1em;
padding: 1.5em;
display: flex;
flex-direction: row;
gap: 1.2em;
2025-10-19 05:01:55 +01:00
border-radius: 16px;
background: var(--bg-2);
box-shadow: var(--shadow-md);
2024-09-03 08:07:45 +01:00
}
.artist-avatar {
width: 200px;
text-align: center;
}
.artist-avatar img {
width: 100%;
aspect-ratio: 1;
}
.artist-avatar img:hover {
outline: 1px solid #808080;
cursor: pointer;
}
.artist-avatar #remove-avatar {
2025-10-19 05:01:55 +01:00
margin-top: .5em;
padding: .3em .6em;
2024-09-03 08:07:45 +01:00
}
.artist-info {
margin: -1em 0 0 0;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.attribute-header {
margin: 1em 0 .2em 0;
opacity: .5;
}
.artist-name {
margin: 0;
}
input[type="text"] {
width: calc(100% - .4em);
padding: .1em .2em;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
color: inherit;
2025-10-19 05:01:55 +01:00
background: var(--bg-0);
border: none;
2024-09-03 08:07:45 +01:00
border-radius: 4px;
outline: none;
}
input[type="text"]:hover {
border-color: #80808080;
}
input[type="text"]:active,
input[type="text"]:focus {
border-color: #808080;
}
.artist-actions {
margin-top: auto;
display: flex;
gap: .5em;
flex-direction: row;
justify-content: right;
}
.card-header a.button {
2024-09-03 08:07:45 +01:00
text-decoration: none;
}
.credit {
margin: 1em 0;
padding: .5em;
display: flex;
flex-direction: row;
gap: 1em;
align-items: center;
2025-10-19 05:01:55 +01:00
border-radius: 16px;
background: var(--bg-2);
box-shadow: var(--shadow-md);
cursor: pointer;
transition: background .1s;
}
.credit:hover {
background: var(--bg-1);
2024-09-03 08:07:45 +01:00
}
.release-artwork {
width: 64px;
2024-09-03 08:29:30 +01:00
height: 64px;
2024-09-03 08:07:45 +01:00
border-radius: 4px;
}
.credit-info h3,
.credit-info p {
margin: 0;
font-size: .9em;
}