edh-elo/app/static/css/base.css
Jack Jackson e4ea529fbe Cosmetic and final-basic functionality
At this point it _should_ be just about usable for folks to poke-around
in, though ugly as sin.
2024-06-09 09:45:56 -07:00

92 lines
1.3 KiB
CSS

body {
margin: 0;
}
#header {
background-color: #0080ff;
min-height: 40px;
width: 100%;
color: #ddd;
text-shadow: 2px 2px #555;
}
#header div {
float: left
}
#header a {
color: inherit;
text-decoration: none;
-moz-transition: all .2s ease-in;
-o-transition: all .2s ease-in;
-webkit-transition: all .2s ease-in;
transition: all .2s ease-in;
}
#header a {
/* margin: 0; */
line-height: 40px;
}
#header a:hover {
color: #00c;
}
#header #header_main_anchor {
min-height: 40px;
width: 100px;
padding: 0px 20px;
text-align: center;
}
#header #topbar {
margin-left: 20px;
}
.topbar_item {
margin: 0px 10px;
}
#header div#create_game_button {
float: right;
margin-right: 15px;
}
a#create_game_link {
display:block;
text-shadow: none;
color: #222;
background-color: lightgreen;
height: 25px;
line-height: 27px;
margin-top: 5px;
padding: 2px 10px;
border-radius: 10px;
}
footer {
position: fixed;
left: 0;
bottom: 0;
height: 40px;
line-height: 40px;
width: 100%;
background-color: #0007ee;
color: lightgrey;
text-align: center;
}
footer a {
color: lightgrey;
}
footer #about {
float: left;
margin-left: 10px;
}
footer #credits {
float: right;
margin-right: 10px;
}