/* 
	Author :: Elodie BAYET
    Origin :: Belgium, EU
	  Role :: Fullstack Web Developer
	  Date :: 2020.04 + 2021.09 + 2025.06
*/
/*
    Global Variables
*/
/* Main Colors */
/* Custom Greys */
/* Dynamic Colors */
/*
    Global Mixins
*/
/* For 'navigation-expand' mixin */
/* For layout w/ expanded navigation */
/* Set for UI icons mixins */
/* For icons of brands (used in theme) */
/* For icons of UI (used in theme) */
/* For positioning UI icons (used in theme) */
/*
    Global Placeholders
*/
/* For typography */
/* For hover effect (used in theme) */
.topic h4, .topic > *:last-child, .share a .symbol, .project a + .cover div img, .bypass .cursor, .applogo > span, #uihead .navigation, a, a:link, a:visited, button, .navigation li {
  transition: 0.25s ease-in-out;
}

/*
    Original Theme :: "Neptune"
    Dark-Mode backgrounds w/ Water-Blue colors
    - -
    Base Management
*/
/* Local Mixins */
/* Animations */
@keyframes SlideUp {
  0% {
    bottom: 0%;
    opacity: 0;
  }
  33% {
    bottom: 33%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    opacity: 1;
  }
}
@keyframes SlideDown {
  0% {
    top: 0%;
    opacity: 0;
  }
  33% {
    top: 33%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
@keyframes Spin {
  0% {
    transform: rotate(0deg);
    filter: brightness(115%);
  }
  50% {
    transform: rotate(180deg);
    filter: brightness(85%);
  }
  100% {
    transform: rotate(360deg);
    filter: brightness(115%);
  }
}
@keyframes FadeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* General */
body {
  background-color: rgb(36, 36, 40);
  color: rgb(240, 240, 242);
}

/* Typography */
main h1 {
  color: #b8b8bf;
}
main h2 {
  color: rgb(18, 190, 213);
}
main h3 {
  color: rgb(255, 255, 255);
}
main h4 {
  color: #9e9ea8;
}
main pre {
  border: 1px solid rgb(178, 11, 43);
  padding: 18px;
}
main a:not([class]) {
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(18, 190, 213);
}
main a:not([class]):hover, main a:not([class]):focus {
  color: #24d5ed;
  border-bottom: 1px solid #12a2b5;
}
main .blacken {
  color: #128fa0;
}
main .darken {
  color: #12a2b5;
}
main .origin {
  color: rgb(18, 190, 213);
}
main .lighten {
  color: #24d5ed;
}
main .xdark {
  color: #3c3c42;
}
main .dark {
  color: #53535d;
}
main .mdark {
  color: #6b6b77;
}
main .medium {
  color: #848490;
}
main .mlight {
  color: #9e9ea8;
}
main .light {
  color: #b8b8bf;
}
main .xlight {
  color: #d2d2d7;
}

/* Logo */
.applogo .icon {
  opacity: 1;
}
.applogo .title {
  color: #53535d;
}
.applogo:hover .icon {
  opacity: 0.1;
}
.applogo:hover .title {
  color: rgb(18, 190, 213);
}
.applogo + p {
  color: #d2d2d7;
}

/* Menu */
nav li a {
  color: rgb(255, 255, 255);
  background-color: transparent;
}
nav li a:hover, nav li a:focus, nav li a.selected {
  color: #24d5ed;
}
nav.socialmenu li a {
  filter: brightness(150%) grayscale(99%);
  opacity: 0.9;
}
nav.socialmenu li a:hover, nav.socialmenu li a:focus {
  filter: brightness(100%) grayscale(0%);
  opacity: 1;
}

.navigation.expand .sub li a {
  color: rgb(240, 240, 242);
  background-color: transparent;
}
.navigation.expand .sub li a:hover, .navigation.expand .sub li a:focus, .navigation.expand .sub li a.selected {
  color: rgb(18, 190, 213);
}

/* Main U-Interface Header */
#uihead .inner {
  color: inherit;
  background-color: #3c3c42;
  box-shadow: 0 4px 12px 2px rgb(11, 11, 15);
  position: relative;
  z-index: 101;
}
#uihead .inner + .edge {
  background-image: linear-gradient(90deg, rgb(36, 36, 40), rgb(36, 36, 40), rgba(36, 36, 40, 0.6), rgba(36, 36, 40, 0.3), rgba(36, 36, 40, 0));
  left: 0;
  z-index: 102;
}
#uihead .edge {
  color: inherit;
  background-color: transparent;
  position: absolute;
  width: 15%;
  max-width: 320px;
  height: 100%;
  top: 0;
  display: block;
}
#uihead .edge + .edge {
  background-image: linear-gradient(-90deg, rgb(36, 36, 40), rgb(36, 36, 40), rgba(36, 36, 40, 0.6), rgba(36, 36, 40, 0.3), rgba(36, 36, 40, 0));
  right: 0;
  z-index: 103;
}
#uihead button {
  color: inherit;
  background-color: transparent;
  background-image: url("../../assets/ui/navigation_icons_bl.svg");
  background-repeat: no-repeat;
  background-size: 18px 440px;
  background-position-x: 13px;
  background-position-y: -44px;
  filter: grayscale(100%) brightness(150%);
}
#uihead button:hover {
  filter: grayscale(0%) brightness(100%);
}
#uihead.closed button {
  background-position-x: 13px;
  background-position-y: 0px;
}
#uihead .navigation {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1209px), (any-hover: none) {
  #uihead .navigation nav + nav {
    background-image: linear-gradient(90deg, #53535d, #53535d);
    background-position: 50% 0%;
    background-size: 48px 1px;
    background-repeat: no-repeat;
    padding-top: 8px;
  }
}
@media (min-width: 1210px) and (any-hover: hover) {
  #uihead .navigation .sub::before {
    content: " ";
    position: absolute;
    border-width: 4px;
    border-style: solid;
    border-color: #848490 transparent transparent transparent;
    top: 98%;
    left: 50%;
    margin-left: -2px;
  }
  #uihead .navigation .sub:hover::before {
    border-color: #12a2b5 transparent transparent transparent;
  }
  #uihead .navigation .sub ul {
    background-color: #3c3c42;
    background-clip: content-box;
    opacity: 0.9;
  }
}

/* Main U-Interface Footer */
#uifoot {
  border-top: 1px dotted #6b6b77;
}
#uifoot h3 {
  color: #d2d2d7;
  background-color: transparent;
}

/* Main Content */
main noscript {
  opacity: 0.75;
  border: 1px solid rgb(178, 11, 43);
}
main *.disabled {
  opacity: 0.5;
  filter: grayscale(100%);
}
main *.disabled:hover {
  cursor: not-allowed;
}
main .nomodule {
  color: #9e9ea8;
}
main .nomodule samp {
  border: 1px solid #970b26;
  padding: 9px;
}

/* 
	Author :: Elodie BAYET
    Origin :: Belgium, EU
	  Role :: Fullstack Web Developer
	  Date :: 2020.04 + 2021.09 + 2025.06
*/
/*
    Original Theme :: "Neptune"
    Dark-Mode backgrounds w/ Water-Blue colors
    - -
    Components Management
*/
/* Classical Content Elments */
.list li::before {
  color: #12a2b5;
}

.listitem.apart li ~ li::before {
  color: #6b6b77;
}

.listline.apart li ~ li::before {
  color: #128fa0;
}

table thead tr:last-of-type {
  border-bottom: 2px solid rgb(18, 190, 213);
}
table tr ~ tr {
  border-top: 1px solid #12a2b5;
}

.badge .title {
  border-top: 1px solid #53535d;
}
.badge p small {
  color: #9e9ea8;
  background-color: transparent;
}

#filter.error {
  border: 1px solid rgb(178, 11, 43);
  padding: 9px 24px 12px;
}
#filter ul {
  border: 1px solid #53535d;
}
#filter ul::after {
  border-color: #53535d transparent transparent transparent;
  top: 100%;
  content: " ";
  position: absolute;
  border-width: 9px;
  border-style: solid;
}

.divided ~ .divided {
  border-top: 1px dashed #128fa0;
}

.topic h4 {
  color: #24d5ed;
  opacity: 0.9;
}
.topic > *:last-child {
  border-bottom: 1px solid #9e9ea8;
}
.topic:hover h4 {
  color: rgb(255, 255, 255);
  opacity: 1;
}
.topic:hover > *:last-child {
  border-bottom: 1px solid #24d5ed;
}

.periods > div::before {
  color: #9e9ea8;
  transition: 0.25s ease-in-out;
}
.periods > div:hover::before {
  color: rgb(18, 190, 213);
}
.periods > div:hover h3 {
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(18, 190, 213);
}
.periods h3 {
  border-bottom: 1px solid #b8b8bf;
  transition: 0.25s ease-in-out;
}

.nothing::before {
  color: rgb(178, 11, 43);
}

/* Interactive Elements */
a.button.url span, a.link.url span {
  width: 18px;
  height: 20px;
  background-repeat: no-repeat;
}
a.button.url span.pdf, a.link.url span.pdf {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_reader.svg");
}
a.button.url span.github, a.link.url span.github {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_github.svg");
  filter: invert(100%);
}
a.button.url span.bitbucket, a.link.url span.bitbucket {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_bitbucket.svg");
}
a.button.url span.linkedin, a.link.url span.linkedin {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_linkedin.svg");
}
a.button:not(.url) > span, a.link:not(.url) > span {
  width: 9px;
  line-height: 23px;
  background-image: url("../../assets/ui/navigation_icons_bl.svg");
  background-repeat: no-repeat;
  background-size: 9px 220px;
}
a.button:not(.url).selected, a.link:not(.url).selected {
  color: #24d5ed;
}
a.button:not(.url).selected > span, a.link:not(.url).selected > span {
  background-position-x: 0;
  background-position-y: -22px;
  filter: brightness(500%) grayscale(99%);
}
a.button.toggle > span, a.link.toggle > span {
  background-position-x: 0;
  background-position-y: -132px;
}
a.button.anchor > span, a.link.anchor > span {
  background-position-x: 0;
  background-position-y: -110px;
}

a.tab.url span {
  width: 18px;
  height: 20px;
  background-repeat: no-repeat;
}
a.tab.url span.pdf {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_reader.svg");
}
a.tab.url span.github {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_github.svg");
  filter: invert(100%);
}
a.tab.url span.bitbucket {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_bitbucket.svg");
}
a.tab.url span.linkedin {
  background-image: url("https://www.elodiebayet.com/assets/icons/icon_linkedin.svg");
}

a.button {
  color: rgb(255, 255, 255);
  background-color: #43434a;
}
a.button:not(.disabled):hover {
  background-color: #575761;
}

a.link {
  color: rgb(255, 255, 255);
  background-color: transparent;
}
a.link:not(.disabled):hover {
  color: rgb(18, 190, 213);
}

button.button, button.tab, a.tab {
  color: rgb(240, 240, 242);
  background-color: rgb(36, 36, 40);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(18, 190, 213);
  border-radius: 2px;
}
button.button:not(.disabled):hover, button.button.selected, button.tab:not(.disabled):hover, button.tab.selected, a.tab:not(.disabled):hover, a.tab.selected {
  color: rgb(240, 240, 242);
  background-color: #3c3c42;
  border-color: #24d5ed;
}

/* Advanced Elements */
.share a .symbol {
  filter: brightness(150%) grayscale(99%);
}
.share a:hover .symbol, .share a:focus .symbol {
  filter: brightness(100%) grayscale(0%);
}

@media (min-width: 960px) and (any-hover: hover) {
  .tooltip:hover .top {
    animation: SlideUp 0.33s ease-in-out;
  }
  .tooltip:hover .bottom {
    animation: SlideDown 0.33s ease-in-out;
  }
  .tooltip .tip {
    color: rgb(11, 11, 15);
    background-image: linear-gradient(15deg, #d2d2d7, rgb(255, 255, 255));
    box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.5);
  }
  .tooltip .tip::after {
    content: " ";
    position: absolute;
    border-width: 5px;
    border-style: solid;
    left: 10px;
  }
  .tooltip .tip.top::after {
    border-color: #d2d2d7 transparent transparent transparent;
    top: 100%;
  }
  .tooltip .tip.bottom::after {
    border-color: transparent transparent #d2d2d7 transparent;
    bottom: 100%;
  }
}
.project .cover div {
  background-color: #53535d;
  box-shadow: 3px 6px 8px 2px rgba(11, 11, 15, 0.6);
}
.project a + .cover div img {
  transform-origin: 50% 50%;
  transform: scale(1, 1);
}
.project a:hover + .cover div img {
  transform: scale(1.05, 1.05);
}
.project .summary {
  color: rgb(240, 240, 242);
  background-color: rgb(36, 36, 40);
}
.project .summary .date, .project .summary .title {
  text-shadow: -4px 4px 4px rgb(11, 11, 15);
}
.project .summary .date {
  color: #24d5ed;
  background-color: transparent;
  background-image: linear-gradient(90deg, #9e9ea8, #9e9ea8);
  background-position: 0 14px;
  background-size: 122px 1px;
  background-repeat: no-repeat;
}
.project .edge {
  color: inherit;
  background-color: rgb(36, 36, 40);
}
.project .edge:nth-of-type(1) {
  opacity: 1;
  transition-delay: 0.05s;
}
.project .edge:nth-of-type(2) {
  opacity: 0.75;
  transition-delay: 0.1s;
}
.project .edge:nth-of-type(3) {
  opacity: 0.5;
  transition-delay: 0.15s;
}
.project .edge:nth-of-type(4) {
  opacity: 0.25;
  transition-delay: 0.2s;
}
.project:hover .edge {
  opacity: 0;
}
.project:hover .edge:nth-of-type(1) {
  transition-delay: 0.2s;
}
.project:hover .edge:nth-of-type(2) {
  transition-delay: 0.15s;
}
.project:hover .edge:nth-of-type(3) {
  transition-delay: 0.1s;
}
.project:hover .edge:nth-of-type(4) {
  transition-delay: 0.05s;
}

.onload {
  position: relative;
  min-height: 24px;
}
.onload > *:not(.spin) {
  opacity: 0.5;
  filter: blur(2px);
}
.onload .spin {
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: radial-gradient(rgb(18, 190, 213), #24d5ed, transparent, transparent, transparent, transparent);
  border-top: 8px double rgba(244, 240, 240, 0.9);
  border-bottom: 8px double rgba(244, 240, 240, 0.9);
  border-right: 8px double rgba(191, 186, 186, 0.9);
  border-left: 8px double rgba(191, 186, 186, 0.9);
  border-radius: 50%;
  animation: Spin 2s linear infinite;
}

.bypass .cursor {
  height: 44px;
  width: 44px;
  filter: grayscale(100%);
  background-image: url("../../assets/ui/navigation_icons_bl.svg");
  background-repeat: no-repeat;
  background-size: 18px 440px;
}
.bypass .label {
  color: rgb(255, 255, 255);
  background-color: rgba(36, 36, 40, 0.66);
}
.bypass:hover .cursor {
  filter: grayscale(0);
}
.bypass#previous .cursor {
  background-position-x: 13px;
  background-position-y: -88px;
}
.bypass#previous .label {
  margin-left: -6px;
  border-left: 1px solid #848490;
}
.bypass#next .cursor {
  background-position-x: 13px;
  background-position-y: -132px;
}
.bypass#next .label {
  margin-right: -6px;
  border-right: 1px solid #848490;
}

@media (min-width: 1036px) {
  .bypass:hover .label {
    animation: FadeOn 0.33s ease-in-out;
  }
}/*# sourceMappingURL=theme.css.map */