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

83 lines
1.5 KiB
CSS
Raw Normal View History

2016-04-14 01:56:13 +03:00
/* 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-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; }
2016-05-25 23:57:12 +03:00
.edit {
padding: 0.3em 1em;
margin: 1em 0.5em;
box-shadow: 0 1px 5px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
.edit-info {
color: gray;
opacity: 0.8; }
#edits > * > h2 {
margin-top: 3em; }
2016-05-04 21:03:23 +03:00
#edits table {
2016-04-14 01:56:13 +03:00
width: 100%;
border: none;
table-layout: fixed; }
2016-05-04 21:03:23 +03:00
#edits td {
2016-04-14 01:56:13 +03:00
width: 100%;
2016-05-04 21:03:23 +03:00
vertical-align: top;
2016-04-14 01:56:13 +03:00
padding: 0.5em 0.5em; }
2016-05-04 21:03:23 +03:00
#edits td:first-child {
2016-04-14 01:56:13 +03:00
padding-left: 0; }
2016-05-04 21:03:23 +03:00
#edits td:last-child {
2016-04-14 01:56:13 +03:00
padding-right: 0; }
2016-05-04 21:03:23 +03:00
#stats table {
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid gray;
margin-bottom: 1em; }
#stats thead {
background-color: #e0e0e0; }
2016-05-08 16:29:07 +03:00
#stats th {
text-align: left; }
2016-05-04 21:03:23 +03:00
#stats th, #stats td {
padding: 0.5em 1em; }
2016-05-08 16:29:07 +03:00
table.sortable th {
cursor: pointer; }
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
content: " \25B4\25BE"; }