css variables with light and dark variants

This commit is contained in:
Alejandro Gomez
2023-01-10 10:18:46 +01:00
parent e3aa1dc548
commit e074ed8060
18 changed files with 113 additions and 60 deletions

View File

@ -19,7 +19,7 @@
}
.profile .avatar-wrapper {
margin: 10px;
margin: auto 10px;
}
.profile .avatar {
@ -32,10 +32,12 @@
.profile .details {
margin-top: auto;
margin-bottom: auto;
overflow: hidden;
}
.profile .website {
margin-bottom: 10px;
color: var(--highlight);
}
.profile .website::before {
@ -53,3 +55,10 @@
width: 100%;
}
}
@media(max-width: 420px) {
.profile .name { flex-direction: column; }
.profile .name .btn {
margin-top: 5px;
}
}