153 lines
2.5 KiB
SCSS
153 lines
2.5 KiB
SCSS
@use "@openfun/cunningham-react/sass/fonts";
|
|
@use "@openfun/cunningham-react/sass/icons";
|
|
@use "@openfun/cunningham-react/style";
|
|
@use "cunningham-tokens";
|
|
|
|
|
|
// Reset
|
|
h1 {
|
|
font-family: var(--c--theme--font--families--accent);
|
|
font-size: 4rem;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: var(--c--theme--colors--greyscale-800);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
// App
|
|
html {
|
|
min-height: 100vh;
|
|
background: linear-gradient(153deg, var(--c--theme--colors--greyscale-100) 0%, var(--c--theme--colors--greyscale-000) 100%);
|
|
}
|
|
|
|
.pattern {
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: -200px;
|
|
left: -290px;
|
|
transform: rotate(335deg);
|
|
}
|
|
|
|
.theme-switch {
|
|
position: fixed;
|
|
right: 1rem;
|
|
top: 0.75rem;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
|
|
--c--components--forms-field--width: 150px;
|
|
}
|
|
|
|
.card {
|
|
background-color: var(--c--theme--colors--greyscale-000);
|
|
padding: 2rem;
|
|
border-radius: var(--c--components--card--border-radius, 4px);
|
|
border: var(--c--components--card--border-width, 1px) var(--c--theme--colors--greyscale-300) solid;
|
|
box-shadow: var(--c--components--card--box-shadow, rgba(149, 157, 165, 0.2) 0px 8px 24px);
|
|
}
|
|
|
|
.cunningham-theme--dark {
|
|
.card {
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
margin: auto;
|
|
position: relative;
|
|
|
|
width: 1100px;
|
|
@media (max-width: 1200px) {
|
|
width: calc(100% - 2rem);
|
|
}
|
|
}
|
|
|
|
|
|
// Home
|
|
.page__home {
|
|
&__title {
|
|
gap: 1.5rem;
|
|
margin: 4rem 0;
|
|
|
|
h1 {
|
|
}
|
|
|
|
button {
|
|
margin-top: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
html[data-theme="redflux"] {
|
|
background: #000000D7 url(redflux_bg.webp) 50%/cover no-repeat fixed;
|
|
background-blend-mode: darken;
|
|
}
|
|
|
|
html[data-theme="blueney"] {
|
|
background: url(blueney_bg.jpg) 50%/cover no-repeat fixed;
|
|
}
|
|
|
|
// Create
|
|
.page__create {
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding-bottom: 5rem;
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin: 4rem 0;
|
|
}
|
|
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
text-align: left;
|
|
|
|
h3, h4 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Onboarding Modal
|
|
.onboarding__title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.onboarding__title-icon {
|
|
font-size: 2rem;
|
|
margin: 0;
|
|
}
|
|
.onboarding__content {
|
|
max-width: 680px;
|
|
line-height: 1.5rem;
|
|
text-align: left;
|
|
|
|
& p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
.onboarding__footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: row-reverse;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
|
|
& > .c__button:first-child {
|
|
min-width: 200px;
|
|
justify-content: center;
|
|
}
|
|
}
|