mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 13:56:22 -04:00
* scss isn't worth the technical/mental overhead anymore * try to translate my old Hugo pygments themes * update lockfile * consolidate .hljs classes
60 lines
867 B
CSS
60 lines
867 B
CSS
.card {
|
|
width: 100%;
|
|
padding: 1.2em 1.2em 0.8em;
|
|
border: 1px solid;
|
|
border-radius: 0.5em;
|
|
font-size: 0.85em;
|
|
color: var(--medium-dark);
|
|
border-color: var(--kinda-light);
|
|
}
|
|
|
|
.name {
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.description {
|
|
margin: 0.7em 0 0.5em;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.meta {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.meta_item {
|
|
margin-right: 1.5em;
|
|
font-size: 0.875em;
|
|
line-height: 2;
|
|
color: var(--medium);
|
|
}
|
|
|
|
.meta_item a {
|
|
background: none;
|
|
padding-bottom: 0;
|
|
color: inherit;
|
|
}
|
|
|
|
.meta_item a:hover {
|
|
color: var(--link);
|
|
}
|
|
|
|
.octicon,
|
|
.language_color {
|
|
width: 16px;
|
|
height: 16px;
|
|
vertical-align: text-bottom;
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
.language_color {
|
|
display: inline-block;
|
|
width: 1.15em;
|
|
height: 1.15em;
|
|
border-radius: 50%;
|
|
position: relative;
|
|
vertical-align: text-top;
|
|
}
|