pixsy/includes/style.css

112 lines
1.6 KiB
CSS
Raw Normal View History

2017-12-22 17:22:08 +00:00
@font-face {
font-family: 'rubikregular';
src: url('rubik-regular-webfont.woff2') format('woff2'), url('rubik-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
font-family: "rubikregular", sans-serif;
text-align: center;
}
html,
body {
background-color: #594a54;
color: #d3cbd0;
}
2017-12-23 21:17:31 +00:00
a {
color: #f69f8f;
}
2017-12-22 17:22:08 +00:00
canvas {
image-rendering: pixelated;
}
input[type="color"] {
width: 2em;
height: 2em;
margin: 0;
padding: 0;
border: none;
background: none;
}
2017-12-22 19:44:44 +00:00
input[type="color"][disabled] {
opacity: 0.5;
}
2018-03-03 09:28:15 +00:00
input[type="file"] {
padding: 1em 0;
width: 256px;
}
2017-12-23 20:41:40 +00:00
input[type="text"],
button {
width: 14em;
margin: 1em;
padding: 0.25em;
font-size: 1em;
}
2017-12-22 17:22:08 +00:00
table {
margin: 0 auto;
}
table td,
table th {
width: 50%;
}
table td {
text-align: left;
}
table th {
text-align: right;
}
textarea {
2017-12-22 19:44:44 +00:00
height: 256px;
width: 256px;
2017-12-23 00:14:54 +00:00
font-family: monospace;
2017-12-22 17:22:08 +00:00
}
textarea,
input {
text-align: left;
}
2018-03-03 11:55:42 +00:00
.box256 {
height: 256px;
width: 256px;
}
2017-12-22 17:22:08 +00:00
.centre {
margin: 0 auto;
}
2017-12-23 23:34:17 +00:00
.croppie-container {
height: auto;
}
2018-03-03 11:55:42 +00:00
.flex-container {
background-color: #d3cbd0;
display: flex;
flex-flow: row wrap;
}
2017-12-22 17:22:08 +00:00
.section {
2018-03-03 11:55:42 +00:00
margin: 0 auto;
2017-12-22 17:22:08 +00:00
background-color: #d3cbd0;
color: #594a54;
2018-03-03 11:55:42 +00:00
width: 256px;
padding-bottom: 1em;
2017-12-22 17:22:08 +00:00
}
#brightness {
2017-12-22 17:22:08 +00:00
width: 256px;
}
#threshold {
width: 150px;
}
2017-12-22 19:44:44 +00:00
#brightness + label,
#threshold + label {
2017-12-22 17:22:08 +00:00
margin: 0 auto;
}
2018-03-03 11:55:42 +00:00
#palettes {
height: 256px;
width: 256px;
overflow-y: scroll;
}
2017-12-23 00:14:54 +00:00
#preview,
#room-output {
2017-12-22 17:22:08 +00:00
margin: 0 auto;
width: 256px;
}
2017-12-23 20:41:40 +00:00
#save {
margin-top: 0;
}