﻿/*style sheet for reume page - portfolio.html*/



/*body of the page*/
body {
    background-color: #F8E9A1;
    width: 100%;
    margin: 0; /*reset the margin and padding of the page*/
    padding: 0;
}

/*header div*/
h1 {
    color: #24305E;
    width: 100%;
    font-size: 45pt;
    font-family: "Lucida Bright";
    text-align: center;
    border: 1px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 0;
}

/*links in the navigation bar*/
#navigation-bar a {
    font-family: "Lucida Bright";
    font-size: 25pt;
    padding: 0;
}

/*navigation bar div*/
#navigation-bar {
    margin: 0;
    padding: 0;
}

/*home link div on the navigation bar*/
#home-link {
    width: 25%;
    background-color: #A8D0E6;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*labs link div on the navigation bar*/
#labs-link {
    width: 25%;
    background-color: #F7C6C6;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*about me link div on the navigation bar*/
#about-link {
    width: 25%;
    background-color: #A8D0E6;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*resume link div on the navigation bar*/
#portfolio-link {
    width: 25%;
    background-color: #F7C6C6;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*education div*/
#education {
    background-color: #24305E;
    padding: 10px;
    text-align: left;
    margin: 0;
}

    /*header of education div*/
    #education h3 {
        position: relative; /*position is relative to its normal positioning*/
        top: 10px;
        color: #F7C6C6;
        font-family: "Century Gothic";
        font-size: 15pt;
    }

    /*paragraph text in education div*/
    #education p {
        color: #F8E9A1;
        font-family: "Century Gothic";
        font-size: 15pt;
    }

/*work experience div*/
#work-experience {
    position: relative; /*position is relative to its normal positioning*/
    background-color: #374785;
    padding: 10px;
    text-align: left;
    margin: 0;
}
    /*header of work experience div*/
    #work-experience h3 {
        position: relative; /*position is relative to its normal positioning*/
        color: #F7C6C6;
        font-family: "Century Gothic";
        font-size: 15pt;
    }

    /*paragraph text in work experience div*/
    #work-experience p {
        color: #F7C6C6;
        font-family: "Century Gothic";
        font-size: 15pt;
    }

    /*unordered list in work experience div (bullet list)*/
    #work-experience ul {
        color: #F8E9A1;
        font-size: 15pt;
        font-family: "Century Gothic";
    }

/*skills div*/
#skills {
    position: absolute;
    background-color: #A8D0E6;
    padding: 10px;
    text-align: left;
    margin: 0;
    width: 30%;
    bottom: 75px;
    right: 30px;
    height: 50%;
    border: 5px solid;
    border-color: #F7C6C6;
}

    /*header in skills div*/
    #skills h3 {
        position: relative; /*position is relative to its normal positioning*/
        color: #374785;
        font-family: "Century Gothic";
        margin: 0;
        font-size: 20pt;
    }

/*div to contain left-side of list in skills div*/
#left {
    position: relative;
    float: left;
    width: 50%;
}

/*div to contain right-side of list in skills div*/
#right {
    position: relative;
    float: right;
    width: 50%;
    right: 10px;
}

/*left-side of list*/
#left ul li {
    color: #24305E;
    font-size: 15pt;
}

/*right side of list*/
#right ul li {
    color: #24305E;
    font-size: 15pt;
}

/*all links on page*/
a:link {
    text-decoration: none;
}

/*links when mouse hovers over them*/
a:hover {
    color: #F8E9A1;
}

/*footer div*/
#footer {
    position: relative; /*position is relative to its normal positioning*/
    background-color: #F7C6C6;
    width: 100%;
    height: 6%;
    padding: 10px;
    clear: both; /*does not allow floating on either side of element*/
    box-sizing: border-box; /*width and height include padding and border*/
    margin: 0;
}

    /*link in footer div*/
    #footer a {
        font-family: "Century Gothic";
        font-weight: normal;
        color: #24305E;
    }

    /*paragraph text in footer div*/
    #footer p {
        position: relative; /*position is relative to its normal positioning*/
        font-family: "Century Gothic";
        font-weight: normal;
        float: right;
        color: #24305E;
        margin: 0;
    }

/*styling for small screens*/
/*I used this to compare with school computer and my personal laptop*/
@media screen and (max-width: 600px) {
    #navigation-bar a {
        font-size: 15pt;
    }

    #education p {
        font-size: 14pt;
    }

    #work-experience {
        position: relative;
        height: 800px;
    }

        #work-experience p {
            font-size: 15pt;
        }

        #work-experience ul {
            font-size: 15pt;
        }

    #skills {
        position: relative;
        width: 90%;
        height: 200px;
        bottom: -10px;
        right: -5px;
    }

    #right ul li {
        font-size: 15pt;
    }

    #left ul li {
        font-size: 15pt;
    }

    #footer {
        position: relative;
        top: 0;
    }
}
