pixel-art-maker/app.css

59 lines
814 B
CSS
Raw Normal View History

2016-05-15 07:49:24 -07:00
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
2016-05-13 14:48:17 -07:00
body {
background: #ccc;
}
h2 {
color: #999;
2016-05-15 07:49:24 -07:00
font-family: Gill Sans;
font-size: 1.5rem;
2016-05-13 14:48:17 -07:00
font-weight: 400;
2016-05-15 07:49:24 -07:00
letter-spacing: 3px;
2016-05-15 08:46:38 -07:00
line-height: 2.2rem;
2016-05-15 10:38:18 -07:00
margin: 6px 0 0 20px;
2016-05-13 14:48:17 -07:00
}
2016-05-15 07:54:03 -07:00
main {
2016-05-13 14:48:17 -07:00
background: #e5e5e5;
2016-05-15 08:50:06 -07:00
border-radius: 15px;
2016-05-15 07:49:24 -07:00
box-shadow: 0 0 20px #999;
2016-05-15 08:50:06 -07:00
margin: 20px auto 0;
padding: 20px;
width: 894px;
2016-05-13 14:48:17 -07:00
}
.pixel {
background: white;
border: 1px solid #e5e5e5;
2016-05-15 07:49:24 -07:00
height: 14px;
width: 14px;
2016-05-13 14:48:17 -07:00
}
2016-05-15 07:49:24 -07:00
.color {
border: 1px solid #bbbbbb;
2016-05-13 14:48:17 -07:00
border-radius: 50%;
2016-05-15 07:49:24 -07:00
height: 35.5px;
margin: 5px 5px 0 0;
width: 35.5px;
}
2016-05-15 10:34:01 -07:00
.brushColor {
2016-05-15 07:49:24 -07:00
border: 1px solid #999999;
2016-05-15 08:50:06 -07:00
border-radius: 3px;
2016-05-15 07:49:24 -07:00
height: 35.5px;
2016-05-15 08:46:38 -07:00
margin: 6px 0 0 12px;
2016-05-15 07:49:24 -07:00
width: 100px;
2016-05-13 14:48:17 -07:00
}
2016-05-15 08:46:38 -07:00
#canvas, #palette {
display: flex;
flex-wrap: wrap;
}