emojos/static/site.css

47 lines
674 B
CSS
Raw Normal View History

2018-04-01 20:23:21 -07:00
body {
font-family: sans-serif;
font-size: 15px;
line-height: 20px;
background-color: rgb(40, 44, 55);
color: white;
}
a {
color: rgb(217, 225, 232);
}
dl.emojo {
2018-07-25 13:51:28 -07:00
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15em, max-content));
grid-row-gap: 5px;
2018-04-01 20:23:21 -07:00
}
dl.emojo div {
2018-07-25 13:51:28 -07:00
cursor: pointer;
2018-04-01 20:23:21 -07:00
}
2018-07-25 13:51:28 -07:00
dl.emojo div * {
display: inline-block;
2018-04-01 20:23:21 -07:00
}
dl.emojo dt img {
height: 20px;
2018-07-25 19:48:17 -07:00
width: 20px;
2018-04-03 18:59:18 -07:00
object-fit: contain;
2018-07-25 19:50:38 -07:00
vertical-align: middle;
padding-bottom: 2px;
2018-04-01 20:23:21 -07:00
}
dl.emojo dd {
2018-07-25 13:51:28 -07:00
margin-left: 0;
padding: 0px 8px;
2018-04-01 20:23:21 -07:00
}
dl.emojo dd.success {
color: rgb(202, 143, 4);
}
2018-04-03 18:31:14 -07:00
footer {
font-size: smaller;
}