Compare commits
4 commits
ebbd2d3ec5
...
142b1455f9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
142b1455f9 | ||
|
|
a12049e717 | ||
|
|
1b29a6de77 | ||
|
|
b18695aa7b |
|
|
@ -8,6 +8,9 @@
|
||||||
--button-border-color: var(--button-bg);
|
--button-border-color: var(--button-bg);
|
||||||
--button-radius: 0.5em;
|
--button-radius: 0.5em;
|
||||||
|
|
||||||
|
--button-outline-color: #0a76f6;
|
||||||
|
--button-outline-offset: -3px;
|
||||||
|
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--button-gap, 0.5em);
|
gap: var(--button-gap, 0.5em);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
.project-grid {
|
.project-grid {
|
||||||
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
|
||||||
gap: 1rem;
|
gap: 1.5rem 1rem;
|
||||||
display: grid;
|
display: grid;
|
||||||
}
|
}
|
||||||
.project-grid > li {
|
.project-grid > li {
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 2.5rem;
|
gap: .5rem;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -47,7 +47,7 @@
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
.card .content {
|
.card .content {
|
||||||
padding: 1rem 0.4rem 0;
|
padding-inline: .4rem;
|
||||||
}
|
}
|
||||||
.card .list-inline {
|
.card .list-inline {
|
||||||
gap: 0.5ch;
|
gap: 0.5ch;
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ main {
|
||||||
}
|
}
|
||||||
main h2 {
|
main h2 {
|
||||||
font-size: calc(var(--font-size) * 1.6);
|
font-size: calc(var(--font-size) * 1.6);
|
||||||
margin-block: 2rem 1rem;
|
margin-block: 1.5em 1em;
|
||||||
}
|
}
|
||||||
main .list-inline {
|
main .list-inline {
|
||||||
--item-gap: 0;
|
--item-gap: 0;
|
||||||
|
|
|
||||||
|
|
@ -76,6 +76,7 @@
|
||||||
color: var(--item-color, var(--text));
|
color: var(--item-color, var(--text));
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
|
outline-offset: -1px;
|
||||||
}
|
}
|
||||||
.list-inline a:hover {
|
.list-inline a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue