oswilno/assets/css/app.scss

221 lines
3.9 KiB
SCSS
Raw Permalink Normal View History

2022-07-23 13:36:38 +02:00
@import 'reset.css';
@import 'noto-sans.css';
@import 'beam-weapon.css';
2022-07-04 08:31:12 +02:00
2022-07-29 16:08:59 +02:00
/* latin-ext */
@font-face {
font-family: 'Cardo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqhv23IEp2A.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Cardo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqhv43IE.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Garamond Premier Pro Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/assets/fonts/Garamond Premier Pro Display.otf') format('otf');
}
2022-07-04 16:00:17 +02:00
* {
--hover-color: #f18902;
--border-slim-color: #495057;
2022-07-05 16:02:27 +02:00
--border-light-gray-color: #e5e5e5;
2022-07-26 10:17:46 +02:00
--red-color: #9D0208;
--orange-color: #E85D04;
--blue-color: #023e8a;
2022-07-29 16:08:59 +02:00
--ast-border-color: #dddddd;
2022-07-04 16:00:17 +02:00
}
2022-07-15 16:00:00 +02:00
header > h1 {
display: none;
2022-07-04 08:31:12 +02:00
}
@media (min-width: 1200px) {
2022-07-15 16:00:00 +02:00
article {
width: 1280px;
margin: auto auto;
padding: 0;
2022-07-04 16:00:17 +02:00
}
2022-07-04 08:31:12 +02:00
2022-07-15 16:00:00 +02:00
ow-nav > ow-path > div {
2022-07-04 16:00:17 +02:00
display: block;
}
2022-07-04 08:31:12 +02:00
}
2022-07-14 19:36:33 +02:00
2022-07-15 16:00:00 +02:00
main {
font-family: 'Noto Sans', sans-serif;
}
ow-nav > ow-path {
text-align: center;
width: 48px;
}
2022-07-25 11:39:18 +02:00
2022-07-15 16:00:00 +02:00
ow-nav > ow-path > div {
display: none;
}
ow-nav > ow-path > svg {
fill: black;
min-width: 32px;
max-width: 48px;
margin: auto;
}
article {
padding: 4px;
}
2022-07-14 19:36:33 +02:00
* {
2022-07-29 16:08:59 +02:00
font-family: 'Cardo', sans-serif;
2022-07-14 19:36:33 +02:00
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
2022-07-29 16:08:59 +02:00
font-family: 'Cardo', serif;
2022-07-14 19:36:33 +02:00
line-height: 1.2;
}
h1 {
2022-07-29 16:08:59 +02:00
font-family: "Garamond Premier Pro Display", Sans-serif;
font-size: 39px;
font-weight: 600;
2022-07-14 19:36:33 +02:00
}
h2 {
2022-07-19 22:05:54 +02:00
font-size: 2.4rem;
padding-bottom: .2rem;
2022-07-14 19:36:33 +02:00
border-bottom: 1px solid #333;
2022-07-19 22:05:54 +02:00
margin-top: 1rem;
margin-bottom: .7rem;
2022-07-14 19:36:33 +02:00
}
h3 {
2022-07-19 22:05:54 +02:00
font-size: 1.8rem;
margin-bottom: .7rem;
2022-07-14 19:36:33 +02:00
}
p {
2022-07-15 16:00:00 +02:00
font-size: 1rem;
2022-07-14 19:36:33 +02:00
line-height: 1.5;
2022-07-19 22:05:54 +02:00
margin-bottom: 1.3rem;
2022-07-14 19:36:33 +02:00
}
ul, ol {
2022-07-18 16:23:07 +02:00
font-size: 1.1rem;
2022-07-19 22:05:54 +02:00
margin: 0 0 1.1rem 1.2rem;
2022-07-14 19:36:33 +02:00
}
li {
2022-07-19 22:05:54 +02:00
margin-bottom: .4rem;
2022-07-14 19:36:33 +02:00
}
2022-07-18 16:23:07 +02:00
terms-and-conditions li {
list-style: decimal;
}
2022-07-14 19:36:33 +02:00
blockquote {
2022-07-19 22:05:54 +02:00
padding-left: 1rem;
2022-07-14 19:36:33 +02:00
border-left: 3px solid #999;
2022-07-19 22:05:54 +02:00
margin: 2.5rem 2rem;
2022-07-14 19:36:33 +02:00
}
blockquote p {
2022-07-29 16:08:59 +02:00
font: italic 1.2rem/1.6 'Cardo', serif;
2022-07-14 19:36:33 +02:00
}
local-businesses local-business p {
2022-07-29 16:08:59 +02:00
font-family: 'Cardo', sans-serif;
2022-07-14 19:36:33 +02:00
}
2022-07-15 16:00:00 +02:00
.error {
width: 1280px;
background: #ffe0e0;
2022-07-26 10:17:46 +02:00
border: 1px solid var(--red-color);
2022-07-15 16:00:00 +02:00
margin: 8px auto auto;
padding: 8px;
2022-07-26 10:17:46 +02:00
color: var(--red-color);
2022-07-15 16:00:00 +02:00
}
2022-07-22 21:32:33 +02:00
2022-07-15 16:00:00 +02:00
#home {
position: relative;
}
#home span {
position: absolute;
display: block;
left: 0;
bottom: -3px;
font-size: 8px;
width: 60px;
text-align: center;
}
ow-nav > ow-path[selected="selected"] {
border: none;
}
ow-nav > ow-path[selected="selected"] > svg {
fill: var(--hover-color);
}
2022-07-25 11:39:18 +02:00
.btn {
cursor: pointer;
position: relative;
display: inline-block;
text-align: center;
vertical-align: middle;
user-select: none;
width: auto;
height: calc(1.5em + 0.75rem + 2px);
2022-07-29 16:08:59 +02:00
border: 1px solid black;
color: white;
background: black;
padding: 10px 20px;
font-family: "Cardo", Sans-serif;
font-size: 20px;
font-weight: 500;
line-height: 1em;
letter-spacing: 0;
transition: all 0.2s;
2022-07-25 11:39:18 +02:00
}
a.btn {
text-decoration: none;
line-height: 2;
}
2022-07-29 16:08:59 +02:00
2022-07-26 09:45:03 +02:00
privacy-policy h2 {
display: block;
text-align: center;
}
2022-07-29 16:08:59 +02:00
2022-07-26 09:45:03 +02:00
privacy-policy h4 {
display: block;
text-align: center;
margin-bottom: 8px;
}
2022-07-29 16:08:59 +02:00
2022-07-26 09:45:03 +02:00
privacy-policy ul li {
list-style: circle;
}
privacy-policy ol li {
list-style: decimal;
}