pixel-art-maker/style.css

55 lines
877 B
CSS
Raw Normal View History

2018-06-10 12:29:56 +05:30
body {
display: flex;
flex-direction: column;
2018-06-10 13:43:10 +05:30
justify-content: center;
align-items: center;
}
h2 {
font-family: "Gill Sans";
font-size: 24px;
font-weight: 400;
color: rgb(153, 153, 153);
margin: 0;
}
.container {
display: flex;
flex-direction: column;
padding: 20px;
border-radius: 15px;
background-color: rgb(229, 229, 229);
2018-06-10 12:29:56 +05:30
}
.row {
display: flex;
}
.pixel {
width: 14px;
height: 14px;
border: 1px solid rgb(229, 229, 229);
2018-06-10 13:43:10 +05:30
background-color: white;
2018-06-10 12:46:13 +05:30
}
.palette {
display: flex;
2018-06-10 13:15:37 +05:30
flex-wrap: wrap;
background-color: rgb(229, 229, 229);
2018-06-10 13:43:10 +05:30
align-items: center;
2018-06-10 12:46:13 +05:30
}
.swatch {
width: 35px;
height: 35px;
2018-06-10 13:43:10 +05:30
border: 1px solid rgb(187, 187, 187);
2018-06-10 12:46:13 +05:30
border-radius: 50%;
display: flex;
margin: 2px;
2018-06-10 13:43:10 +05:30
}
.currentSwatch {
width: 50px;
height: 35px;
display: flex;
2018-06-10 12:29:56 +05:30
}