﻿* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    margin: 0;
    width: 100%; 
}

#canvas {
    display: block; 
    width: 100%; 
}


.footer {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 500; 
    text-transform: uppercase;
    height: 100px;
    background: transparent;
    color: #000000;
    text-align: center;
    padding-top: 50px;
    letter-spacing: 3px;
}

.footer a {
    text-decoration: none; 
    color: inherit;
    transition: 0.5s;
}

.footer a:visited{
    text-decoration: none; 
    color: inherit;
    transition: 0.5s;
}

.footer a:hover {
    text-decoration: none; 
    transition: 0.5s;
    color: #ff9500; 
}



#toolbar {
    width: 100%; 
    height: 50px; 
    padding: 10px;
    position: fixed; 
    top: 0;
    background-color: #000000;  
    color: #ffffff; 
}

.radControl {
    width: 30px; 
    height: 30px; 
    background-color: #242323;
    display: inline-block; 
    text-align: center; 
    padding: 5px; 
}

#decRadius:hover {
    cursor: pointer
}

#incRadius:hover {
    cursor: pointer
}

#rad{
    float: left; 
}

#colors {
    float: right; 
}

.swatch {
    width: 30px; 
    height: 30px; 
    border-radius: 15px; 
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    margin-left: 10px; 
}

.swatch.active {
    border: 2px solid white; 
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.5); 
}

/*@media (max-width: 800px) {
    .swatch {
    width: 15px; 
    height: 15px; 
    border-radius: 15px; 
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    margin-left: 5px; 
    margin-top: 5px; 
}
}*/

@media (max-width: 850px) {
    #toolbar {
    width: 100%; 
    height: 50px; 
    padding: 10px;
    position: fixed; 
    top: 0;
    background-color: #000000;  
    color: #ffffff; 
}

.swatch {
    width: 20px; 
    height: 20px; 
    border-radius: 15px; 
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    margin-top: 3px; 
}

}

@media (max-width: 535px) {

#colors {
    margin-top: 50px; 
}

.swatch {
    display: block;
}

}

