FAQ
‣
‣
‣
Background Image
- Use custom image
- Use custom color
html, body {
background-image: url('your-img-link.png') !important; /* Background image */
/* Image stretched based on screen size */
background-repeat: no-repeat !important;
background-size: cover !important;
}body {
background-color: #eff4fe !important; /* Change color */
}Main Card
- Use custom color
- Change card size
- Use squared card
#__next > div {
/* Card decoration */
background-color: #F7F7F7 !important; /* Main card color */
box-shadow: 0rem 0.875rem 1.5rem 0rem rgba(32,46,66,0.1) !important; /* Main card shadow */
}#__next > div {
/* Card width */
/* 1vw = 1% of viewport wide */
/* 1vh = 1% of viewport height */
/* 1vw of 50 cm viewport device wide is 0.5 cm */
/* 1vh of 100 cm viewport device height is 1 cm */
width: calc(225px + 25vw) !important; /* Responsive card width */
margin-top: 5vh !important; /* Main card top margin */
margin-bottom: 5vh !important; /* Main card bottom margin *?
}#__next > div {
border-radius: 0px !important; /* Rounded main card */
}Button
- Change color
- Use squared button
.notion-callout {
border-radius: 0px !important; /* Rounded callout */
}Font
- Change font
- Change font color
@font-face {
font-family: 'your-font-name';
src: url('your-font-link.otf') format('truetype');
}:root {
/* Primary text color */
--color-text-default: rgba(10, 36, 64, 1) !important;
}Have any question?
Don't be shy to ask me even it's a silly question 🤓