You've already forked ProfessionalWebsite
Published Version 1.0
This commit is contained in:
236
Export/assets/css/styles.css
Normal file
236
Export/assets/css/styles.css
Normal file
@@ -0,0 +1,236 @@
|
||||
.bs-icon {
|
||||
--bs-icon-size: .75rem;
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: var(--bs-icon-size);
|
||||
width: calc(var(--bs-icon-size) * 2);
|
||||
height: calc(var(--bs-icon-size) * 2);
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.bs-icon-xs {
|
||||
--bs-icon-size: 1rem;
|
||||
width: calc(var(--bs-icon-size) * 1.5);
|
||||
height: calc(var(--bs-icon-size) * 1.5);
|
||||
}
|
||||
|
||||
.bs-icon-sm {
|
||||
--bs-icon-size: 1rem;
|
||||
}
|
||||
|
||||
.bs-icon-md {
|
||||
--bs-icon-size: 1.5rem;
|
||||
}
|
||||
|
||||
.bs-icon-lg {
|
||||
--bs-icon-size: 2rem;
|
||||
}
|
||||
|
||||
.bs-icon-xl {
|
||||
--bs-icon-size: 2.5rem;
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-primary {
|
||||
color: var(--bs-white);
|
||||
background: var(--bs-primary);
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-primary-light {
|
||||
color: var(--bs-primary);
|
||||
background: rgba(var(--bs-primary-rgb), .2);
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-semi-white {
|
||||
color: var(--bs-primary);
|
||||
background: rgba(255, 255, 255, .5);
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-rounded {
|
||||
border-radius: .5rem;
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.blog-heading {
|
||||
margin-bottom: 10px !important;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.blog-loop-img {
|
||||
max-height: 200px;
|
||||
background-size: cover;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
|
||||
.blog-block {
|
||||
padding-bottom: 25px!important;
|
||||
padding-top: 50px!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] .card-link .blog-link {
|
||||
--bs-link-color: #ffffff !important;
|
||||
--bs-link-color-rgb: 255,255,255 !important;
|
||||
--bs-link-hover-color: #60C401 !important;
|
||||
--bs-link-hover-color-rgb: 96,196,1 !important;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] .card-link .blog-link:hover {
|
||||
--bs-link-color: #ffffff !important;
|
||||
--bs-link-color-rgb: 255,255,255 !important;
|
||||
--bs-link-hover-color: #60C401 !important;
|
||||
--bs-link-hover-color-rgb: 96,196,1 !important;
|
||||
color: #60C401 !important;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .card-link .blog-link {
|
||||
--bs-link-color: #154854 !important;
|
||||
--bs-link-color-rgb: 21,72,84 !important;
|
||||
--bs-link-hover-color: #60C401 !important;
|
||||
--bs-link-hover-color-rgb: 96,196,1 !important;
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .card-link .blog-link:hover {
|
||||
--bs-link-color: #154854 !important;
|
||||
--bs-link-color-rgb: 21,72,84 !important;
|
||||
--bs-link-hover-color: #60C401 !important;
|
||||
--bs-link-hover-color-rgb: 96,196,1 !important;
|
||||
color: var(--bs-link-hover-color);
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .footer-logo-colour {
|
||||
display: block;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] .footer-logo-colour {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] #light-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=auto] #light-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] #dark-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] #dark-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] #auto-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] #auto-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=auto] #light-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=auto] #dark-mode {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .gradient {
|
||||
background: linear-gradient(120deg, #154854, #60C401)!important;
|
||||
color: #fff;
|
||||
transition: background 1000ms linear;
|
||||
}
|
||||
|
||||
[data-bs-theme=auto] .gradient {
|
||||
background: linear-gradient(120deg, #154854, #60C401)!important;
|
||||
color: #fff;
|
||||
transition: background 1000ms linear;
|
||||
}
|
||||
|
||||
/* [data-bs-theme=light] .gradient .mode-select {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .gradient:hover {
|
||||
animation: reverse-colour-change;
|
||||
animation-iteration-count: 1;
|
||||
animation-duration: 5s;
|
||||
animation-fill-mode: forwards;
|
||||
} */
|
||||
|
||||
/* [data-bs-theme=light] .gradient .mode-select:active {
|
||||
animation: reverse-colour-change;
|
||||
animation-iteration-count: 1;
|
||||
animation-duration: 0.5s;
|
||||
} */
|
||||
|
||||
[data-bs-theme=dark] .gradient {
|
||||
background: linear-gradient(120deg, #60C401, #154854)!important;
|
||||
color: #fff;
|
||||
transition: background 1000ms linear;
|
||||
}
|
||||
|
||||
/* [data-bs-theme=dark] .gradient:hover {
|
||||
animation: colour-change;
|
||||
animation-iteration-count: 1;
|
||||
animation-duration: 5s;
|
||||
animation-fill-mode: forwards;
|
||||
} */
|
||||
|
||||
[data-bs-theme=dark] .coloured-underline {
|
||||
/*text-decoration-line: underline;*/
|
||||
/*text-decoration-thickness: 2.5px;*/
|
||||
/*text-decoration-color: linear-gradient(#60C401, #154854), linear-gradient(rgb(96, 196, 1),rgb(96, 196, 1)), linear-gradient(#154854, #154854);*/
|
||||
/*transition: background-size 2s linear, background-position 2s linear;*/
|
||||
text-decoration: none;
|
||||
background-image: linear-gradient(#070d21, #070d21), linear-gradient(rgb(96, 196, 1),rgb(96, 196, 1)), linear-gradient(#154854, #154854);
|
||||
background-size: 20px 2px, 100% 2px, 0 2px;
|
||||
background-position: calc(20px * -1) 100%, 100% 100%, 0 100%;
|
||||
background-repeat: no-repeat;
|
||||
transition: background-size 2s linear, background-position 2s linear;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .coloured-underline {
|
||||
/*text-decoration-line: underline;*/
|
||||
/*text-decoration-thickness: 2.5px;*/
|
||||
/*text-decoration-color: linear-gradient(#60C401, #154854), linear-gradient(rgb(96, 196, 1),rgb(96, 196, 1)), linear-gradient(#154854, #154854);*/
|
||||
/*transition: background-size 2s linear, background-position 2s linear;*/
|
||||
text-decoration: none;
|
||||
background-image: linear-gradient(#fff, #fff), linear-gradient(rgb(96, 196, 1),rgb(96, 196, 1)), linear-gradient(#154854, #154854);
|
||||
background-size: 20px 2px, 100% 2px, 0 2px;
|
||||
background-position: calc(20px * -1) 100%, 100% 100%, 0 100%;
|
||||
background-repeat: no-repeat;
|
||||
transition: background-size 2s linear, background-position 2s linear;
|
||||
}
|
||||
|
||||
.coloured-underline:hover {
|
||||
/*text-decoration-thickness: 5px;*/
|
||||
background-size: 20px 2px, 0 2px, 100% 2px;
|
||||
background-position: calc(100% + 20px) 100%, 100% 100%, 0 100%;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .carousel-fade {
|
||||
--bs-carousel-indicator-active-bg: #000;
|
||||
--bs-carousel-caption-color: #000;
|
||||
--bs-carousel-control-icon-filter: invert(1) grayscale(100);
|
||||
}
|
||||
|
||||
[data-bs-theme="dark"] .carousel-fade {
|
||||
--bs-carousel-indicator-active-bg: #fff;
|
||||
--bs-carousel-caption-color: #fff;
|
||||
--bs-carousel-control-icon-filter: invert(0) grayscale(100);
|
||||
}
|
||||
|
||||
.rainbow-border {
|
||||
max-height: 150px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user