oswilno/assets/css/app.css

156 lines
2.7 KiB
CSS
Raw Normal View History

2022-07-15 16:00:00 +02:00
@import url('/assets/css/noto-sans.css');
@import url("/assets/css/beam-weapon.css");
2022-07-04 08:31:12 +02:00
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-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
header > h1 {
font-family: 'Beam Weapon', sans-serif;
font-weight: bold;
text-shadow: 2px 1px 2px #fff, -1px -1px 2px #fff;
display: block;
font-size: 115px;
padding: 0;
text-align: center;
background: no-repeat center url("/assets/images/background.webp");
background: no-repeat center image-set(url("/assets/images/background.webp") 1x, url("/assets/images/background.jpeg") 1x);
border-radius: 4px;
background-size: 1280px 200px;
2022-07-04 16:00:17 +02:00
width: 1280px;
height: 200px;
2022-07-15 16:00:00 +02:00
margin: auto;
2022-07-04 16:00:17 +02:00
}
2022-07-14 19:36:33 +02:00
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;
}
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
* {
font-family: 'Noto Sans', sans-serif;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: Georgia, "Times New Roman", Times, serif;
line-height: 1.2;
}
h1 {
2022-07-19 22:05:54 +02:00
font-size: 3.4rem;
margin-bottom: .8rem;
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-19 22:05:54 +02:00
font: italic 1.2rem/1.6 Georgia, "Times New Roman", Times, serif;
2022-07-14 19:36:33 +02:00
}
local-businesses local-business p {
font-family: 'Noto Sans', sans-serif;
}
2022-07-15 16:00:00 +02:00
.error {
width: 1280px;
color: #ba3939;
background: #ffe0e0;
border: 1px solid #a33a3a;
margin: 8px auto auto;
padding: 8px;
}
#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);
}