Skip to content
Snippets Groups Projects
main.css 3.01 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
    }
    
    
    
    
    .content-container {
    
    
        /* STYLING */
        background:rgba(15,15,15,0.9);
    
        /* SIZING */
    
        min-height: 75%;
        width: 100%;
    }
    
    /* 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,.1);
    
        height: 175px;
        width: 300px;
    
        margin-top: 50px;
    }
    
    .project-img {
        height: 50%;
    
    .project-title {
        padding: 0;
        font-size: large;
        margin-left: 10px;
    
    .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;
    
    
    
    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;
    }