You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1011 B
77 lines
1011 B
9 years ago
|
html {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
*, *:before, *:after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
|
||
9 years ago
|
body {
|
||
|
background: #ccc;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
color: #999;
|
||
9 years ago
|
font-family: Gill Sans;
|
||
|
font-size: 1.5rem;
|
||
9 years ago
|
font-weight: 400;
|
||
|
float: left;
|
||
9 years ago
|
letter-spacing: 3px;
|
||
|
line-height: 2.4rem;
|
||
|
margin: 0;
|
||
9 years ago
|
}
|
||
|
|
||
|
#container {
|
||
|
background: #e5e5e5;
|
||
9 years ago
|
border-radius: 3.5%;
|
||
|
box-shadow: 0 0 20px #999;
|
||
9 years ago
|
margin: 0 auto;
|
||
|
margin-top: 2%;
|
||
|
padding: 2%;
|
||
9 years ago
|
width: 905px;
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
#canvas {
|
||
|
clear: both;
|
||
|
margin: 0 auto;
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
#palette {
|
||
|
clear: both;
|
||
|
height: 100px;
|
||
9 years ago
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.pixel {
|
||
|
background: white;
|
||
|
border: 1px solid #e5e5e5;
|
||
|
float: left;
|
||
9 years ago
|
height: 14px;
|
||
|
width: 14px;
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
.color {
|
||
|
border: 1px solid #bbbbbb;
|
||
9 years ago
|
border-radius: 50%;
|
||
9 years ago
|
height: 35.5px;
|
||
|
float: left;
|
||
|
margin: 5px 5px 0 0;
|
||
|
width: 35.5px;
|
||
|
}
|
||
|
|
||
|
.selection {
|
||
|
float: left;
|
||
|
height: 35.5px;
|
||
|
margin-top: 6px;
|
||
|
padding-left: 18px;
|
||
|
}
|
||
|
|
||
|
.current {
|
||
|
border: 1px solid #999999;
|
||
|
border-radius: 5%;
|
||
|
float: left;
|
||
|
height: 35.5px;
|
||
|
margin-left: 12px;
|
||
|
width: 100px;
|
||
9 years ago
|
}
|