You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.3 KiB
76 lines
1.3 KiB
.cardView { |
|
display: flex; |
|
min-height: 100vh; |
|
justify-content: center; |
|
align-items: center; |
|
flex-direction: column; |
|
padding: 1rem; |
|
box-sizing: border-box; |
|
} |
|
|
|
.cardView nav { |
|
width: 100%; |
|
max-width: 624px; |
|
} |
|
.cardView nav span { |
|
padding: 8px 16px; |
|
margin-right: 10px; |
|
border-radius: 4px; |
|
color: var(--text); |
|
} |
|
|
|
.cardView nav span:focus-visible { |
|
border: 1px solid #fff; |
|
} |
|
|
|
.cardView nav span:not(.selected-link) { |
|
cursor: pointer; |
|
} |
|
.cardView nav span.selected-link { |
|
background: var(--card); |
|
color: var(--button-text); |
|
font-weight: bold; |
|
} |
|
|
|
.cardView > * { |
|
margin-top: 2rem; |
|
} |
|
|
|
.cardView > *:first-child { |
|
margin-top: 38px; |
|
} |
|
|
|
.topRightCredits { |
|
position: absolute; |
|
right: 1rem; |
|
top: 1rem; |
|
margin-top: 0 !important; |
|
text-align: right; |
|
} |
|
|
|
.topRightCredits a, .topRightCredits a:visited { |
|
color: var(--theme-color); |
|
text-decoration: none; |
|
margin: 0; |
|
} |
|
|
|
.topRightCredits a:hover, .topRightCredits a:active { |
|
color: var(--theme-color); |
|
text-decoration: none; |
|
} |
|
|
|
.topRightCredits a .arrow { |
|
transform: translateY(.1rem); |
|
} |
|
|
|
.topRightCredits a:hover .arrow { |
|
transform: translateY(.1rem) translateX(.2rem); |
|
} |
|
|
|
p.source { |
|
text-transform: uppercase; |
|
font-weight: bold; |
|
color: var(--source-headings); |
|
font-size: 0.8em; |
|
margin-top: 2rem; |
|
}
|
|
|