Skip to content
Snippets Groups Projects
Select Git revision
  • 08eb75a674b2eaa7b983931ae488e8de0656433d
  • master default
2 results

stylesheet.css

Blame
  • Forked from Dr.Pirmann / CI101Week56Lab
    This fork has diverged from the upstream repository.
    user avatar
    SirMathhman authored
    fd56653d
    History
    stylesheet.css 392 B
    html{
        width: 100%;
        height: 100%;
        margin: 0;
    }
    
    body {
        text-align: center;
        /*Question 5d*/
        background-image: url("logos/cci-1.jpg")
    }
    
    table {
        margin: 0 auto;
    }
    
    
    td {
        padding: 5px;
    }
    
    /*Question 5a*/
    #header-row {
        background-color: red;
    }
    
    /*Question 5b*/
    .rows {
        background-color: blue;
    
    
    /*Question 5c*/
    button {
        margin: 5px;
        padding: 5px;
    }