web-scripting / OOP Webscripting Project / main.css
main.css
Raw
body{
    background-color: lightsteelblue;
}
#wrap{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.outterDiv{
    display: inline-block;
    border: 1px solid black;
    border-radius: 20px;
    margin: 1%;
    padding: 1%;
    width: 25%;
    background-color: white;
    box-shadow: 1px 1px 1px 1px;
}

.innerDiv{
    text-align: left;
    border: 1px solid black;

    margin-top: 5%;
    margin-bottom: 5%;
    padding: 5%;
    height: 175px;
    background-color: whitesmoke;
}

button{
    height: 30px;
    width: 90px;
    margin: 4%;
    border: 1px solid #666;
    border-radius: 20px;
    background-color: whitesmoke;
}

button:hover{
    background-color: lightsteelblue;
}

h1{
    color: aliceblue;
    text-shadow: 1px 1px 1px black;
}

h3{
    color: black;
}