selfprivacy.org/assets/scss/_styles_project.scss

309 lines
5.1 KiB
SCSS
Raw Normal View History

2023-01-11 18:53:46 +02:00
.td-navbar {
background: $dark;
min-height: 5rem;
.navbar-brand__name {
display: none;
}
.nav-link {
2024-01-22 20:27:29 +02:00
color: $secondary !important;
2023-01-11 18:53:46 +02:00
font-weight: 600;
2024-02-04 16:44:58 +02:00
border-radius: 5px;
}
.nav-link:hover {
2024-02-04 17:09:59 +02:00
background-color: #61616144;
transition: background-color 0.2s ease-in-out;
2023-01-11 18:53:46 +02:00
}
2024-02-04 16:44:58 +02:00
.nav-link.active{
2024-01-22 20:27:29 +02:00
background-color: #616161;
color: white;
}
2023-01-11 18:53:46 +02:00
}
2024-01-29 13:44:23 +02:00
.td-breadcrumbs__single {
2024-01-30 17:53:36 +02:00
visibility: hidden;
2024-01-29 13:44:23 +02:00
}
.td-navbar .td-navbar-nav-scroll {
height: unset !important;
margin-top: unset !important;
}
.td-navbar .td-navbar-nav-scroll .nav-link {
2024-01-26 17:17:40 +02:00
padding: .5rem 1.5rem;
}
2024-02-04 17:09:59 +02:00
.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;
}
.td-navbar .td-navbar-nav-scroll .navbar-nav {
padding-bottom: 0 !important;
}
.nav-item {
2024-01-26 17:17:40 +02:00
margin-right: .5rem !important;
}
2024-01-28 17:29:51 +02:00
.dropdown-menu {
right: 0;
left: unset;
2024-01-28 17:39:59 +02:00
padding: 0px;
2024-01-28 17:44:46 +02:00
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
2024-01-28 17:39:59 +02:00
}
.dropdown-item {
padding: 0.5rem 1.5rem;
border-radius: 0.25rem;
2024-01-28 17:29:51 +02:00
}
2023-01-11 18:53:46 +02:00
2024-02-04 17:29:23 +02:00
.td-sidebar-nav-active-item {
color: $primary !important;
font-weight: 600;
}
2024-01-29 00:54:14 +02:00
.td-sidebar-nav .td-sidebar-link__page,
ul.ul-2>.td-sidebar-nav__section-title a {
color: #616161 !important;
font-weight: 400;
2024-02-04 16:11:15 +02:00
padding: .3rem .8rem !important;
border-radius: .3rem;
margin: .1rem !important;
}
.td-sidebar-link.td-sidebar-link__section {
border-radius: .3rem;
padding: .3rem .8rem !important;
margin: .1rem !important;
}
.td-sidebar-link.td-sidebar-link__section:hover {
color: $primary !important;
background-color: #7EB07F11;
2024-02-04 17:24:20 +02:00
transition: background-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
2024-02-04 16:11:15 +02:00
}
.td-sidebar-nav a.active {
color: $primary !important;
background-color: #7EB07F22;
}
ul.ul-2 {
padding: 0;
2024-01-29 00:54:14 +02:00
}
2023-01-11 18:53:46 +02:00
2024-01-29 00:54:14 +02:00
ul.ul-2>.td-sidebar-nav__section-title a:hover {
2024-02-04 16:11:15 +02:00
color: $primary !important;
background-color: #7EB07F11;
2024-02-04 17:24:20 +02:00
transition: background-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
2023-01-11 18:53:46 +02:00
}
2024-02-04 16:39:37 +02:00
ul.ul-0 li a.tree-root,
h5.taxonomy-title {
display: none !important;
2023-01-11 18:53:46 +02:00
}
2024-01-28 23:30:18 +02:00
li:has(input[type="checkbox"]) {
list-style-type: none;
2023-01-11 18:53:46 +02:00
}
2024-02-04 16:39:37 +02:00
.td-toc ul {
2024-01-27 22:50:15 +02:00
margin-top: 1rem;
}
2023-01-11 18:53:46 +02:00
2024-01-27 22:50:15 +02:00
.td-toc li {
display: block;
padding-bottom: .5rem;
}
2023-01-11 18:53:46 +02:00
2024-01-27 22:50:15 +02:00
.td-toc a{
display: inline !important;
}
2023-01-11 18:53:46 +02:00
@media (min-width: 768px) {
.td-sidebar {
padding-top: 5rem;
}
.td-404 main, .td-main main {
padding-top: 6.5rem;
}
.td-sidebar-toc {
padding-top: 2.75rem;
}
}
.rounded-img {
border-radius: 1rem;
}
2024-01-22 19:00:55 +02:00
.card-title {
font-weight: 600;
}
2023-01-11 18:53:46 +02:00
.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;
2024-01-24 13:20:26 +02:00
}
.btn {
font-weight: 600;
2023-01-11 18:53:46 +02:00
}
.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;
}
}
}
2024-01-22 19:00:55 +02:00
.text-secondary {
font-weight: 600;
}
2023-01-11 18:53:46 +02:00
.sp-service-icon {
margin-top: -4rem;
max-width: 12rem;
max-height: 8rem;
margin-left: 2rem;
width: max-content;
}
.sp-service-card {
background: #FFFFFF;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
border-radius: 10px;
border: none;
}
.sp-services-row {
margin-top: 6rem;
}
.tab-content .tab-pane {
max-width: 100% !important;
2023-08-03 14:41:34 +03:00
}
.sp-supperted-by-img {
max-height: 5rem;
margin: 1rem;
}
.sp-supported-by-list {
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
.sp-supported-by-card {
background: #FFFFFF;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
border-radius: 10px;
border: none;
margin-top: 1rem;
2024-01-28 20:19:58 +02:00
}
2024-01-22 19:36:56 +02:00
body {
background-color: whitesmoke;
}
2024-01-28 20:19:58 +02:00
a.nav-link.sp-coming-soon {
pointer-events: none;
cursor: default;
color: #616161;
}
a.nav-link.sp-coming-soon::after {
content: "Coming soon!";
2024-01-30 11:56:05 +02:00
display: inline-block;
2024-01-28 20:19:58 +02:00
background-color: #616161;
color: $dark;
margin-left: .5rem;
2024-01-30 11:56:05 +02:00
padding: .1rem .5rem;
2024-01-28 20:19:58 +02:00
border-radius: .1rem;
2024-02-04 20:09:33 +02:00
}
.tab-content .tab-pane {
border: 1px solid rgba(0, 0, 0, 0.125) !important;
border-radius: 0px .25rem .25rem .25rem;
}
.nav-tabs {
border: none !important;
}
2024-02-05 20:28:43 +02:00
.nav-tabs .nav-item .nav-link.active {
border-color: transparent transparent white transparent !important;
}
2024-02-05 20:35:23 +02:00
.nav-tabs .nav-item .nav-link {
2024-02-05 20:28:43 +02:00
border: none !important;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
}
.tab-body {
background-color: white;
border: none !important;
position: relative;
z-index: 1;
}
.tab-content .tab-pane {
border: none !important;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
}
2024-02-04 20:25:41 +02:00
.nav-tabs a:not(.active).nav-link:hover {
background-color: #0d6efd11;
}
2024-02-04 20:09:33 +02:00
.td-content ul li, .td-content ol li {
margin-bottom: unset !important;
2024-02-04 20:25:41 +02:00
}
.tab-content div {
transition: none;
2024-01-24 13:20:26 +02:00
}