ADD: Pricing charts layout

Added column based pricing chart layout, add nuxt/fonts
This commit is contained in:
webfussel 2025-05-27 21:42:49 +02:00
parent f263a5574a
commit 84a295f011
11 changed files with 1310 additions and 352 deletions

View file

@ -1,5 +1,6 @@
.Button {
all: unset;
font-family: 'Roboto Condensed', sans-serif;
transition: 250ms;
cursor: pointer;
padding: 1rem 1.5rem;
@ -9,7 +10,6 @@
align-items: center;
justify-content: center;
gap: 1rem;
font-weight: bold;
&.default {
background: var(--color-orange);
@ -49,49 +49,6 @@
}
}
.DualButton {
--size: 2.2rem;
display: flex;
width: 100%;
& .divider {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--color-black);
color: var(--color-white);
border-radius: 9999px;
width: var(--size);
height: var(--size);
padding: var(--size);
font-size: 1.2rem;
z-index: 1;
margin-left: calc(var(--size) * -1 - 25px);
border: 2px solid var(--color-black);
}
.Button {
border: 2px solid currentColor;
}
& .Button:hover {
outline: none;
box-shadow: none;
background-color: var(--color-black);
color: var(--color-white);
border-color: var(--color-orange);
}
& .Button:first-child {
padding-right: calc(var(--size) * 2);
}
& .Button:last-child {
padding-left: calc(var(--size) * 2);
margin-left: calc(var(--size) * -1 - 25px);
}
}
.button-wrapper {
border-radius: 99999px;
}