2024-07-24 09:43:31 +02:00
|
|
|
body,
|
|
|
|
|
html,
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: var(--color-body-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body,
|
|
|
|
|
html {
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2024-07-31 07:59:51 +02:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2024-07-24 09:43:31 +02:00
|
|
|
text-decoration: none;
|
|
|
|
|
color: inherit;
|
2024-07-31 07:59:51 +02:00
|
|
|
cursor: pointer;
|
2024-07-24 09:43:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
picture {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
picture {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
all: unset;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2024-07-24 15:56:28 +02:00
|
|
|
|
|
|
|
|
button[disabled] {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
2024-07-31 09:20:47 +02:00
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::placeholder {
|
|
|
|
|
color: #000;
|
|
|
|
|
opacity: 1; /* Firefox */
|
2024-07-31 12:09:03 +02:00
|
|
|
transition: all 0.2s ease-in-out;
|
2024-07-31 09:20:47 +02:00
|
|
|
}
|
|
|
|
|
::-ms-input-placeholder {
|
|
|
|
|
/* Edge 12 -18 */
|
|
|
|
|
color: #000;
|
2024-07-31 12:09:03 +02:00
|
|
|
transition: color 0.2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
:focus::placeholder {
|
|
|
|
|
opacity: 0.5; /* Firefox */
|
|
|
|
|
}
|
|
|
|
|
::-ms-input-placeholder {
|
|
|
|
|
/* Edge 12 -18 */
|
|
|
|
|
color: rgba(0, 0, 0, 125);
|
2024-07-31 09:20:47 +02:00
|
|
|
}
|