69 lines
921 B
CSS
69 lines
921 B
CSS
|
body {
|
||
|
background: #ccc;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-size: 1.75em;
|
||
|
float: left;
|
||
|
font-family: Gill Sans;
|
||
|
color: #999;
|
||
|
font-weight: 400;
|
||
|
letter-spacing: 3px;
|
||
|
margin: 8px 24px 0 0;
|
||
|
}
|
||
|
|
||
|
.info {
|
||
|
float: left;
|
||
|
padding-left: 24px;
|
||
|
width: 440px;
|
||
|
height: 40px;
|
||
|
}
|
||
|
|
||
|
.current {
|
||
|
float: left;
|
||
|
width: 100px;
|
||
|
height: 36.5px;
|
||
|
box-shadow: 0 0 5px #999;
|
||
|
border-radius: 5%;
|
||
|
margin-top: 5px;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
width: 72%;
|
||
|
height: 670px;
|
||
|
background: #e5e5e5;
|
||
|
margin: 0 auto;
|
||
|
margin-top: 2%;
|
||
|
padding: 2%;
|
||
|
border-radius: 3.5%;
|
||
|
box-shadow: 0 0 20px #999;
|
||
|
}
|
||
|
|
||
|
#palette-container {
|
||
|
width: 100%;
|
||
|
height: 100px;
|
||
|
}
|
||
|
|
||
|
.canvas {
|
||
|
width: 100%;
|
||
|
height: 570px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
.pixel {
|
||
|
width: 14px;
|
||
|
height: 14px;
|
||
|
background: white;
|
||
|
border: 1px solid #e5e5e5;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
.palette{
|
||
|
width: 36.5px;
|
||
|
height: 36.5px;
|
||
|
border: 1px solid #e5e5e5;
|
||
|
float: left;
|
||
|
border-radius: 50%;
|
||
|
margin: 5px;
|
||
|
}
|