Files
cheesy-arena-lite/static/css/rankings.css

72 lines
964 B
CSS
Raw Normal View History

2014-06-04 00:01:37 -07:00
/*
Copyright 2014 Team 254. All Rights Reserved.
Author: nick@team254.com (Nick Eyre)
*/
2014-06-04 23:17:38 -07:00
body {
2014-06-04 00:01:37 -07:00
font-family: 'robotoregular';
2014-06-04 23:17:38 -07:00
position: fixed;
font-size: 2em;
2014-06-09 20:54:22 -07:00
/*cursor: none;*/
2014-06-04 23:17:38 -07:00
}
#titlebar {
2014-06-04 00:01:37 -07:00
position: fixed;
top: 0;
right: 0;
2014-06-04 23:17:38 -07:00
left: 0;
padding: .2em 1em;
font-size: 2em;
2014-06-04 00:01:37 -07:00
}
2014-06-04 23:17:38 -07:00
#titlebar img {
height: 1em;
position: fixed;
top: .4em;
right: 1em;
2014-06-04 00:01:37 -07:00
}
2014-06-04 23:17:38 -07:00
#header {
position: fixed;
left: 0;
top: 4em;
2014-06-04 00:01:37 -07:00
width: 100%;
2014-06-04 23:17:38 -07:00
background-color: #0070ff;
color: white;
}
#container {
position: fixed;
top: 5.9em;
bottom: 1.8em;
right: 0;
left: 0;
overflow-y: scroll;
text-align: right;
}
::-webkit-scrollbar {
display: none;
}
2014-06-09 20:54:22 -07:00
table {
width: 100%;
text-align: right;
}
2014-06-04 23:17:38 -07:00
td {
padding: 0.2em 1em;
}
.left {
text-align: left;
}
#container tr:nth-child(even) {
background-color: #ddd;
}
#footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
padding: 0.2em 1em;
border-top: 1px solid black;
}
#footer .right {
float: right;
2014-06-04 00:01:37 -07:00
}