ciekawostki preparations

This commit is contained in:
2022-12-27 20:55:18 +01:00
parent f39e63cf6b
commit 2cce453d30
4 changed files with 79 additions and 0 deletions

View File

@@ -42,6 +42,25 @@ main {
a {
color: rgb(251, 99, 107);
}
button {
display: inline-block;
font-size: 1rem;
padding: 8px;
margin: 0 8px;
background: none;
border: 1px solid var(--grey);
// background: rgba(grey, 0.45);
border-radius: 4px;
color: var(--color);
font-family: var(--fonts-bold);
cursor: pointer;
transition-duration: 100ms;
&:hover {
background: rgba(grey, 0.25);
box-shadow: var(--shadow0);
// color: black;
}
}
.chips {
display: flex;

View File

@@ -107,3 +107,22 @@
}
}
}
.funfact {
display: block;
text-align: right;
width: 100%;
background: var(--black1);
padding: 16px 0;
margin: 16px 0;
border-radius: 8px;
box-shadow: var(--shadow0);
p {
text-align: center;
margin-bottom: 12px;
span {
font-family: var(--fonts-bold);
font-size: 1.5em;
margin: 0 16px;
}
}
}