No edit summary |
No edit summary |
||
(11 intermediate revisions by the same user not shown) | |||
Line 12: | Line 12: | ||
color: var(--color-base--subtle); | color: var(--color-base--subtle); | ||
font-size: 0.875rem; | font-size: 0.875rem; | ||
font-style: italic; | |||
} | } | ||
.home-header__search { | .home-header__search { | ||
max-width: 600px; | |||
padding: var( --space-sm ) var( --space-md ); | |||
margin-top: var( --space-md ); | |||
margin-bottom: var( --space-md ); | |||
margin-left: auto; | |||
margin-right: auto; | |||
border: 1px solid; | |||
border-color: var( --border-color-base--darker ); | |||
border-radius: var( --border-radius--pill ); | |||
cursor: pointer; | |||
font-size: 0.875rem; | |||
font-weight: var( --font-weight-medium ); | |||
} | } | ||
. | .home-header__search:hover { | ||
background-color: var( --background-color-quiet--hover ); | |||
} | } | ||
.home-header__searchIcon img { | |||
margin-right: var( --space-md ); | |||
opacity: var( --opacity-icon-base ); | |||
} | |||
html.skin-citizen-dark .home-header__searchIcon img { | |||
filter: invert(1); | |||
} | |||
.home-header__searchText { | |||
vertical-align: middle; | |||
} | |||
.keyboard-key { | |||
padding: 0.25em 0.5em; | |||
display: inline-block; | |||
line-height: 1; | |||
font-weight: var(--font-weight-medium); | |||
font-size: 0.875rem; | |||
border-radius: var(--border-radius--small); | |||
border: 1px solid; | |||
border-color: var(--border-color-base); | |||
background: var(--color-surface-3); | |||
color: var(--color-base--emphasized); | |||
} | |||
.home-grid { | .home-grid { | ||
Line 51: | Line 77: | ||
background: var( --color-surface-1 ); | background: var( --color-surface-1 ); | ||
border-radius: 8px; | border-radius: 8px; | ||
font-size: 0.875rem; | font-size: 0.875rem; | ||
border: 1px solid; | |||
border-color: var( --border-color-base--darker ); | |||
} | } | ||
Line 164: | Line 191: | ||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
object-fit: scale-down; | |||
image-rendering: auto; | |||
} | |||
.home-header__title img { | |||
image-rendering: auto; | |||
} | } | ||
Line 169: | Line 202: | ||
width: 100%; | width: 100%; | ||
display: table; | display: table; | ||
} | |||
.home-card__menu a { | |||
display: block; | |||
width: 100%; | |||
height: 100%; | |||
margin: -10px -20px -10px 0; | |||
padding: 10px 20px 10px 0; | |||
} | |||
@media (hover: none) { | |||
.desktoponly { | |||
display: none; | |||
} | |||
} | } |
Latest revision as of 06:35, 11 March 2023
.home-header {
text-align: center;
}
.home-header__title {
margin-top: 0;
font-size: 1.5rem;
}
.home-header .home-header__subtitle {
margin-top: 0.4rem;
color: var(--color-base--subtle);
font-size: 0.875rem;
font-style: italic;
}
.home-header__search {
max-width: 600px;
padding: var( --space-sm ) var( --space-md );
margin-top: var( --space-md );
margin-bottom: var( --space-md );
margin-left: auto;
margin-right: auto;
border: 1px solid;
border-color: var( --border-color-base--darker );
border-radius: var( --border-radius--pill );
cursor: pointer;
font-size: 0.875rem;
font-weight: var( --font-weight-medium );
}
.home-header__search:hover {
background-color: var( --background-color-quiet--hover );
}
.home-header__searchIcon img {
margin-right: var( --space-md );
opacity: var( --opacity-icon-base );
}
html.skin-citizen-dark .home-header__searchIcon img {
filter: invert(1);
}
.home-header__searchText {
vertical-align: middle;
}
.keyboard-key {
padding: 0.25em 0.5em;
display: inline-block;
line-height: 1;
font-weight: var(--font-weight-medium);
font-size: 0.875rem;
border-radius: var(--border-radius--small);
border: 1px solid;
border-color: var(--border-color-base);
background: var(--color-surface-3);
color: var(--color-base--emphasized);
}
.home-grid {
display: grid;
grid: auto-flow dense/repeat( auto-fit, minmax( 9.375rem, 1fr ) );
grid-auto-rows: minmax( 6rem, auto );
grid-gap: 0.625rem;
margin-top: 2.4rem;
}
.home-grid a.external {
background-image: none;
}
.home-card {
position: relative;
padding: 15px;
background: var( --color-surface-1 );
border-radius: 8px;
font-size: 0.875rem;
border: 1px solid;
border-color: var( --border-color-base--darker );
}
.home-card table.timeline {
margin-top: 0.2rem;
}
.home-card--col2 {
grid-column: span 2;
}
.home-card--row3 {
grid-row: span 3;
}
.home-card--row4 {
grid-row: span 4;
}
.home-card--row8 {
grid-row: span 8 / auto;
}
.home-card__label {
color: var( --color-base--subtle );
font-size: 0.8125rem;
letter-spacing: 0.75px;
}
h3.home-card__header {
margin-top: 0;
font-size: 1rem;
}
.home-card__header a {
display: flex;
align-items: center;
justify-content: space-between;
}
.home-card__header a:after {
content: '▶';
font-size: 0.8125rem;
}
.home-card__background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #242a31;
border-radius: 8px;
}
.home-card__background img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
transition: transform 0.2s ease;
}
.home-card:hover .home-card__background img {
transform: scale( 1.1 );
}
.home-card__foreground {
position: absolute;
}
.home-card__foreground .home-card__label {
color: #bababa;
}
.home-card__foreground .home-card__header {
color: #fff;
}
.home-card p {
margin-top: 0.2rem;
font-size: 0.875rem;
}
.home-card.home-card--button {
overflow: hidden;
padding: 0;
background: #242a31;
}
.home-card--button a {
display: flex;
height: 100%;
align-items: center;
padding: 0 15px;
background: transparent;
color: #fff;
font-weight: 500;
}
.home-card--button .home-card__background a {
padding: 0;
}
.home-card__image {
height: 200px;
}
.home-card__image img {
display: block;
width: 100%;
height: 100%;
object-fit: scale-down;
image-rendering: auto;
}
.home-header__title img {
image-rendering: auto;
}
.home-card__menu {
width: 100%;
display: table;
}
.home-card__menu a {
display: block;
width: 100%;
height: 100%;
margin: -10px -20px -10px 0;
padding: 10px 20px 10px 0;
}
@media (hover: none) {
.desktoponly {
display: none;
}
}