guichet/static/css/lesgv.css

77 lines
1.2 KiB
CSS
Raw Normal View History

2023-07-19 05:54:28 +00:00
:root {
--color-lesartsvoisins: #f0494d;
}
body {
font-family: fengardoneue;
color: var(--color-text);
background-color: var(--color-background);
}
a {
color: var(--color-link);
}
h1, h2, h3, h4, h5, h6, nav {
font-family: lack;
clear: both;
}
hr {
border-style: none;
border-bottom: 1px solid var(--color-text);
}
button.toggle-darkmode {
position: fixed;
top: 0;
left:0;
z-index: 300;
}
img.richtext-image.full-width {
max-width: 100%;
height: auto;
}
img.richtext-image.left {
max-width: 50%;
float: left;
padding: 0 1rem 0 0 ;
height: auto;
}
img.richtext-image.right {
max-width: 50%;
float: right;
padding: 0 0 0 1rem ;
height: auto;
}
a:hover {
color: var(--color-link-hover);
}
2023-07-19 06:04:29 +00:00
img.lesgv.hero {
2023-07-19 05:54:28 +00:00
margin: 0 auto;
max-height: 35vh;
2023-07-23 16:43:19 +00:00
}
div.card {
flex-direction: row;
}
div.card-header {
transform: rotate(180deg);
writing-mode: vertical-lr;
2023-07-23 16:53:44 +00:00
}
2023-07-24 13:38:01 +00:00
body.darkmode div.card-header {
color: var(--color-text-inverted);
}
2023-07-23 16:53:44 +00:00
@media (max-width: 700px) {
div.card {
flex-direction: column;
}
2023-07-25 20:02:56 +00:00
div.card-header {
transform: unset;
writing-mode: unset;
2023-07-25 20:05:03 +00:00
text-align: right;
2023-07-25 20:02:56 +00:00
}
2023-07-24 08:36:34 +00:00
}