76 lines
1.5 KiB
CSS
76 lines
1.5 KiB
CSS
/*
|
|
* DO NOT EDIT THIS FILE.
|
|
* See the following change record for more information,
|
|
* https://www.drupal.org/node/2815083
|
|
* @preserve
|
|
*/
|
|
|
|
/**
|
|
* Article teaser styles.
|
|
*/
|
|
|
|
:root {
|
|
/*
|
|
* This is default Farmers market color scheme. It will be overriden when you change it in theme settings.
|
|
*/
|
|
/* static colors */
|
|
/*
|
|
* Typography.
|
|
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~64px */ /* ~48px */ /* ~32px */ /* ~24px */ /* ~20px */ /* 16px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
/**
|
|
* Spaces.
|
|
*/ /* 4 * 16px = 64px */ /* 3 * 16px = 48px */ /* 2 * 16px = 32px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */ /* 0.25 * 16px = 4px */ /* 120 * 16px = 1920px */ /* 101.25 * 16px = 1620px */
|
|
/**
|
|
* Common.
|
|
*/
|
|
/**
|
|
* Inputs.
|
|
*/
|
|
}
|
|
|
|
.node--view-mode-teaser > h2 > a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.node--view-mode-teaser > h2 > a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.node--view-mode-teaser .node__meta {
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.node--view-mode-teaser .links {
|
|
display: flex;
|
|
margin: 1rem 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.node--view-mode-teaser .links li {
|
|
margin-right: 1rem;
|
|
text-transform: lowercase;
|
|
font-family: "Lobster"
|
|
,
|
|
cursive
|
|
,
|
|
sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul.links.inline li {
|
|
list-style: none;
|
|
display: inline;
|
|
padding: 0 1rem;
|
|
font-family: "Lobster"
|
|
,
|
|
cursive
|
|
,
|
|
sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
}
|