mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
Added support for charts
This commit is contained in:
parent
0b159c9a42
commit
a9d7d07e7b
16 changed files with 213 additions and 66 deletions
|
@ -208,8 +208,19 @@ select:focus {
|
|||
outline: 0.1rem solid var(--color-foreground);
|
||||
}
|
||||
|
||||
.input {
|
||||
font-size: 1rem;
|
||||
margin: 1rem auto;
|
||||
padding: 0.5rem 0.75rem;
|
||||
border: none;
|
||||
color: var(--color-text);
|
||||
max-width: 20rem;
|
||||
border-radius: 0.125rem;
|
||||
background-color: var(--color-background-mute);
|
||||
}
|
||||
|
||||
/* Search cancel button */
|
||||
input[type="search"]::-webkit-search-cancel-button {
|
||||
input[type='search']::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none;
|
||||
height: 1.5rem;
|
||||
margin-left: 0.5rem;
|
||||
|
@ -219,7 +230,7 @@ input[type="search"]::-webkit-search-cancel-button {
|
|||
cursor: pointer;
|
||||
content: url('/x-lg.svg');
|
||||
}
|
||||
input[type="search"]::-webkit-search-cancel-button:hover {
|
||||
input[type='search']::-webkit-search-cancel-button:hover {
|
||||
background-color: var(--color-border);
|
||||
}
|
||||
|
||||
|
@ -269,13 +280,14 @@ img {
|
|||
background-size: cover;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
.search-artists .bg-img {
|
||||
.circle .bg-img {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.pop,
|
||||
.pop-2 {
|
||||
transition: background-color 0.4s ease, box-shadow 0.4s ease, color 0.3s ease, transform 0.4s ease;
|
||||
transition: background-color 0.4s ease, box-shadow 0.4s ease, color 0.3s ease,
|
||||
transform 0.4s ease;
|
||||
}
|
||||
.pop {
|
||||
--background: none;
|
||||
|
@ -320,17 +332,23 @@ img {
|
|||
}
|
||||
@media (min-width: 530px) {
|
||||
.grid-3 {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1024px) {
|
||||
@media (min-width: 780px) {
|
||||
.grid-3 {
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
}
|
||||
}
|
||||
@media (min-width: 930px) {
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1130px) {
|
||||
.grid-3 {
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue