mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2024-11-14 20:53:17 +00:00
f5b80082ed
This merge request solves following issues with the current layout: - **h1 header not instantly visible on the first screen on mobile:** changed the order so it appears before the screenshot gallery - **alternation of text and images looking weird in vertical mobile layout:** removed the alternation on mobile - **services and advantages being spread too wide on desktop:** added space on the sides - **advantages having repetitive layout, supporters repeating the look of services:** added variety with sliding effect and alternating background color, removed card-like background Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org/pulls/102 Reviewed-by: Inex Code <inex.code@selfprivacy.org> Co-authored-by: nevfy <yaver4.0.0.0@gmail.com> Co-committed-by: nevfy <yaver4.0.0.0@gmail.com>
160 lines
2.5 KiB
SCSS
160 lines
2.5 KiB
SCSS
@import "docsy_overrides";
|
|
|
|
.sp-footer h2,
|
|
.sp-footer h3,
|
|
.sp-footer a.nav-link {
|
|
padding: 0.3rem 1rem !important;
|
|
}
|
|
|
|
.sp-footer a.nav-link:hover {
|
|
background-color: #61616144;
|
|
transition: background-color 0.2s ease-in-out;
|
|
border-radius: .3rem;
|
|
}
|
|
|
|
.sp-footer a.nav-link span {
|
|
width: 2rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border-radius: .1rem;
|
|
padding: .5rem;
|
|
}
|
|
|
|
.sp-footer span i {
|
|
margin: auto;
|
|
}
|
|
.rounded-img {
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.card-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.sp-button-shadow {
|
|
box-shadow: 0px -0.5rem 0px 0px rgba(0, 0, 0, 0.1) inset;
|
|
}
|
|
|
|
.sp-button-big-padding {
|
|
padding-bottom: 1rem;
|
|
padding-top: 0.8rem;
|
|
}
|
|
|
|
.sp-feature-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.sp-footer {
|
|
.nav-link {
|
|
font-weight: 600;
|
|
padding: 0.3rem 0;
|
|
color: $navbar-dark-color;
|
|
&:hover {
|
|
color: $navbar-dark-hover-color;
|
|
}
|
|
&:active {
|
|
color: $navbar-dark-active-color;
|
|
}
|
|
&:disabled {
|
|
color: $navbar-dark-disabled-color;
|
|
}
|
|
span {
|
|
width: 2rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border-radius: .1rem;
|
|
padding: .5rem;
|
|
}
|
|
}
|
|
span i {
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
.sp-service-icon {
|
|
margin-top: -4rem;
|
|
max-width: 12rem;
|
|
max-height: 8rem;
|
|
margin-left: 2rem;
|
|
width: max-content;
|
|
}
|
|
|
|
.sp-service-card {
|
|
background: white;
|
|
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
|
|
border-radius: 10px;
|
|
border: none;
|
|
}
|
|
|
|
.sp-services-row {
|
|
margin-top: 6rem;
|
|
}
|
|
|
|
.sp-supported-by-img {
|
|
max-width: 15rem;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.sp-supported-by-list {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
column-gap: 5vw;
|
|
flex-wrap: wrap;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
a.nav-link.sp-coming-soon {
|
|
pointer-events: none;
|
|
cursor: default;
|
|
color: $gray;
|
|
&::after {
|
|
content: "Coming soon!";
|
|
display: inline-block;
|
|
background-color: $gray;
|
|
color: $dark;
|
|
margin-left: .5rem;
|
|
padding: .1rem .5rem;
|
|
border-radius: .1rem;
|
|
}
|
|
}
|
|
|
|
html, body {
|
|
max-width: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
background-color: $bg-color;
|
|
}
|
|
|
|
.sp-advantages {
|
|
row-gap: 0px;
|
|
}
|
|
|
|
.sp-advantages-header {
|
|
position: sticky;
|
|
top: 10vh;
|
|
margin-bottom: 5rem;
|
|
}
|
|
|
|
.sp-feature {
|
|
position: sticky;
|
|
top: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.sp-feature-green {
|
|
background-color: #e9f1da !important;
|
|
}
|
|
.sp-feature-blue {
|
|
background-color: #e1eaea !important;
|
|
}
|
|
.sp-feature-purple {
|
|
background-color: #ebe0e8 !important;
|
|
}
|
|
|
|
.container-fluid {
|
|
padding-left: 0 !important;
|
|
padding-right: 0 !important;
|
|
} |