﻿
/* Rich Young CSS last to load. Can add new styles or override existing, but
    override is just another class to tact on orig, to main tain orig css
*/
@import url('https://fonts.googleapis.com/css?family=Allerta+Stencil');
@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Rock+Salt&display=swap');




.ryTitle {
    /*font-family: "Rock Salt", cursive;
    font-weight: 400;
    font-style: normal*/
}


.ryProjectsTitle {
  /*  font-family: "Rock Salt", cursive;
    font-style: normal;
    font-size: 20px;
    line-height:40px;
    font-weight:normal*/
}

.ryProjectsPopupTitle {
    /*  font-family: "Rock Salt", cursive;
    font-style: normal;
    font-size: 25px;
    line-height: 30px;
    font-weight: normal;*/
    padding-bottom: 0;
    margin-bottom: 0;
}

.ryProjectsPopupDates {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-size: 15px; 
    font-weight: normal;   
}


.ryPortfolioPopupList {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 10px;
    margin-left: 20px;
}


.rySkills_UL{
    margin-left:30px;
}
.portfolio-item .mask { /*over ride from orig styles */
    background: #6C6CE5;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .mask { /*over ride from orig styles */
    opacity: 0.84;
    background: #000;
}

.employmentRolloverTitle {
    font-family: "Rock Salt", cursive;
    font-weight: 100;
    font-style: normal
}




#ryNavLogo {
    font-family: "Allerta Stencil";
    font-size:24px;
    color:black;

}


.ryEducationDesc {
    background-color: #555;
    color: white;
}

.ryEducationDesc h4
{
    color:white;
    font-size:20px;
    text-align:center;
}


.ryProjectsTitle{
    font-size:40px;
}

.ry-blog-item-override {
    border-top: 1px solid #555;
    border-left: 1px solid #555;
    border-right: 1px solid #555;
    box-shadow: 0 0 10px;
}




.ryEmployerImg {
    transition: transform .2s; /* Animation */
    transform: scale(1);
}

    .ryEmployerImg:hover {
        transform: scale(1.05);
    }

 

/* hide employment image on mobile as does not wrap good */
@media screen and (max-width: 500px) {
    .ryEmployerImg {
        display: none;
    }
}


.mb-0-ryOverride {  /*skills*/
    min-height: 160px;
    color:#fff;
}


.portfolio-item-ry-override { /* https://html-css-js.com/css/generator/box-shadow/ */
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.31);
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.31);
    border: 1px solid #ccc;
}


.ryEmploymentTitle {
    color: #222;  /* only able to set color, could not change other props, did not spend too much time on it*/
}

.ryEmploymentCompany{
    font-size:16px;
    color:rgba(0,0,0,0.81); 
}

/* rich override for selected nav color, was hard to read organe */
.desktop-header-3 .nav-link.active { color: #6161d3 !important;}
.desktop-header-3 .nav-link:hover {    color: #0d0d98 !important;}