1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-27 10:10:50 +03:00
guide/static/admin.css
2016-05-04 21:03:23 +03:00

63 lines
1.1 KiB
CSS

/* Making textboxes and other text inputs behave normally (i.e. now an input
with “width:100%;padding:10px” is going to take 100% of width, not
100%+20px) */
*, *:before, *:after {
box-sizing: border-box; }
body {
font-family: sans-serif; }
.text-button {
font-size: 10pt;
font-weight: normal; }
.text-button::before {content: "[";}
.text-button::after {content: "]";}
textarea {
font-family: sans-serif;
font-size: 100%; }
input {
font-size: 100%; }
.text-button > a:visited {color: #008ACE;}
textarea {
border: 1px solid #ccc;
padding: 5px 7px; }
textarea:focus {
outline: 0px none;
border: 1px solid #07C; }
#edits table {
width: 100%;
border: none;
table-layout: fixed; }
#edits td {
width: 100%;
vertical-align: top;
padding: 0.5em 0.5em; }
#edits td:first-child {
padding-left: 0; }
#edits td:last-child {
padding-right: 0; }
#stats table {
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid gray;
margin-bottom: 1em; }
#stats thead {
background-color: #e0e0e0; }
#stats th, #stats td {
padding: 0.5em 1em; }