timestamper/www/css/ts-screen.css
Jonathan Bernard 6bdf0ab526 The main app page is starting to take form.
Created stylesheet for page.
Added real content and structure to the app page.
2011-02-11 16:35:11 -06:00

115 lines
2.5 KiB
CSS

/*
* author: Jonathan Bernard
* TimeStamper main CSS for screen media types
*/
/*
$obg: #D9CEB2;
$bor: #948C75;
$ibg: #D5DED9;
$txt: #7A6A53;
$bbg: #99B2B7;
*/
/*
$obg: #979681;
$obor: #E6DEC7;
$ibg: #657A8B;
$bbor: #B34C2B;
$bbg: #252D42;
$txt: #E6DEC7;
*/
/* _rounded.scss */
html {
background: url("../img/loving_blu.png") repeat; }
body {
width: 50%;
background-color: #657a8b;
margin: auto;
padding: 1em;
border: solid #b34c2b;
border-top: 0;
-moz-border-radius-bottomleft: 1em;
-webkit-border-bottom-left-radius: 1em;
border-bottom-left-radius: 1em;
-moz-border-radius-bottomright: 1em;
-webkit-border-bottom-right-radius: 1em;
border-bottom-right-radius: 1em; }
@media all and (min-device-width: 480) {
body {
width: 50%; } }
@media all and (max-device-width: 480) {
body {
width: 80%; } }
.bar {
font-family: Helvetica, sans-serif;
color: #252d42;
background-color: #e6dec7;
border-color: #979681;
border-style: solid;
border-width: 0.2em;
border-bottom-width: 0;
padding: 0.1em 1em 0.1em 1em; }
.last-bar {
border-bottom-width: 0.2em;
-moz-border-radius-bottomright: 0.5em;
-webkit-border-bottom-right-radius: 0.5em;
border-bottom-right-radius: 0.5em;
-moz-border-radius-bottomleft: 0.5em;
-webkit-border-bottom-left-radius: 0.5em;
border-bottom-left-radius: 0.5em; }
.control-links {
margin: 0;
padding: 0;
list-style-type: none; }
.control-links li {
margin: 0;
padding: 0; }
.control-links li a {
text-decoration: none; }
#user {
font-weight: bold;
-moz-border-radius-topleft: 0.5em;
-webkit-border-top-left-radius: 0.5em;
border-top-left-radius: 0.5em;
-moz-border-radius-topright: 0.5em;
-webkit-border-top-right-radius: 0.5em;
border-top-right-radius: 0.5em; }
#user div {
overflow: hidden;
margin: 0;
padding: 0; }
#user #fullname, #user #username {
text-decoration: none;
font-size: x-large;
color: #252d42; }
#user #fullname:hover, #user #username:hover {
text-decoration: underline;
color: #4a5a83; }
#user #show-user-link, #user #fullname {
float: left; }
#user #logout-link, #user #username {
float: right; }
#user-info {
display: none; }
#timeline {
font-weight: bold; }
#timeline #timeline-name {
text-decoration: none;
color: #252d42; }
#timeline #timeline-name:hover {
text-decoration: underline;
color: #4a5a83; }
#timeline #timeline-desc {
color: #626150; }
#timeline-info {
display: none; }