Skip to content
Snippets Groups Projects
main.css 4.64 KiB
Newer Older
  • Learn to ignore specific revisions
  • html, body {
        /* STYLING */
        background-image: url("../images/background.png");
        background-repeat: repeat;
        background-color: #151515;
        color: whitesmoke;
        font-family: "Afacad Flux", sans-serif;
        font-optical-sizing: auto;
    
        overflow-x: hidden;
    
        /* SIZING */
        margin:0;
        padding:0;
        height:100%;
        max-width: 100%;
    
    }
    
    
    
    header {
        /* STYLING */
        background:rgba(15,15,15,0.5);
        
    
        /* DEBUG */
        /*border: red;
        border-style: solid;*/
    
        /* SIZING */
        height: 80px;
        width: 100%;
    
    
        display: flex;
        justify-content: center;
    
    }
    
    .logo {
        margin-top: -1px;
        font-size:7px;
        padding-right: 55px;
    }
    
    header ul {
        list-style-type: none;
    }
    
    header li {
        float: left;
    
    }
    
    header a {
        
        display: inline-block;
        
        font-size: x-large;
        color: whitesmoke;
        text-decoration: none;
        margin-right: 65px;
        
        padding-top: 5px
    }
    
    
    
    .techniques-content-container {
        position: relative;
        overflow: auto;
    
        /* STYLING */
        background:rgba(15,15,15,0.9);
    
        /* SIZING */
        min-height: 75%;
        width: 100%;
    
        display: flex;
    
        flex-direction: row;
    }
    
    .techniques-list-search-form {
    
        background:rgba(10,10,10,0.9);
    
        position: relative;
        overflow: auto;
        display: flex;
        flex-direction: column;
    
        width: 30%;
        height: 100%;
    
        padding-top: 20px;
    
    }
    
    .techniques-project-table {
        background:rgba(10,10,10,0.9);
    
        height: 100vh;
        width: 120vh;
    
        display: flex;
    
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: space-evenly;
        align-content: flex-start;
    
    
        padding: 10px;
    }
    
    .searchbar {
        
        margin-left: auto;
        margin-right: auto;
    }
    
    .checkboxes {
    
        position: relative;
        column-count: 4;
        font-size: 12px;
    
    }
    
    .content-container {
    
    
        /* STYLING */
        background:rgba(15,15,15,0.9);
    
        /* SIZING */
    
    .list-search-form {
        position: relative;
        overflow: auto;
    
        display: flex;
        justify-content: center;
    }
    
    
    /* LIST.HTML */
    
    .project-table {
    
        background:rgba(10,10,10,0.9);
    
        height: 100vh;
        width: 120vh;
    
        margin-left: auto;
        margin-right: auto;
    
        display: flex;
    
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: space-evenly;
        align-content: flex-start;
    
    
        padding: 10px;
    
    }
    
    .project {
    
        flex-shrink: 1;
    
    
        background:rgba(25,25,25,.3);
    
    
        height: 175px;
        width: 300px;
    
        margin-top: 50px;
    }
    
    .project-img {
        height: 50%;
    
    .project-title {
        padding: 0;
        font-size: large;
        margin-left: 10px;
    
        text-decoration: dotted;
        font-size: 11px;
    
    .info-container {
    
        height: 60vh;
        width: 120vh;
    
        margin-left: auto;
        margin-right: auto;
    
        display: flex;
        justify-content:center;
        align-items: center;
    
    }
    
    .info-container * {
        background:rgba(10,10,10,0.9);
        border-radius: 30px;
    }
    
    .img-container {
        height: 75%;
        width: 30vh;
    
    }
    
    .img-container div {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        font-size: 14px;
    
        resize: none;
    }
    
    .img-container img {
        width: 100%;
    }
    
    .intro-box {
        height: 75%;
        width: 50%;
    
        padding: 15px;
        margin-left: 5vh;
    
    
    /* PROJECT_DETAILS.HTML */
    
    .project-showcase {
    
        background:rgba(10,10,10,0.9);
    
        margin-left: auto;
        margin-right: auto;
    
        display: flex;
        flex-direction: column;
    
        width: 50%;
        height: 65vh;
    
        align-items: center;
    }
    
    .project-showcase ul {
        margin: 0;
    
    }
    
    
    .project-showcase a {
    
        color: whitesmoke;
    
    }
    
    .showcase-desc {
        margin-left: 13%;
    }
    
    .project-showcase img {
    
    
        object-fit:fill;
        width: 50%;
        height: 50%;
    
    
    }
    
    .project-stats {
        display: flex;
        width: 100%;
        align-content: center;
    
        margin-top: 30px;
    
    
        margin-bottom: 125px;
    }
    
    
    /* PROJECT_DETAILS.HTML */
    
    
    
    
    footer {
        /* STYLING */
        background:rgba(15,15,15,0.5);
    
        /* DEBUG */
    
        /* SIZING */
    
        position: relative; 
        bottom: 0; 
        left: 0; 
        z-index: 10;
    
    
        display: flex;
        justify-content: space-evenly;
        align-items:baseline;
    
    }
    
    footer p {
        font-size: large;
        font-weight: bold;
        color: whitesmoke;
    }
    
    footer a {
        position: absolute;
        font-size: medium;
        font-weight: normal;
        color: #959595;
        text-decoration:underline;
    }
    
    footer ul {
        list-style: none;
    }