tracman-server/static/css/footer.css

54 lines
820 B
CSS
Raw Normal View History

2016-03-31 17:06:21 -06:00
footer {
font-weight: 300;
2017-04-01 11:03:05 -06:00
width: 100%;
overflow: auto;
2016-03-31 17:06:21 -06:00
background: #111;
color: #ccc;
padding: 0 20px;
2017-04-01 11:03:05 -06:00
-moz-box-shadow: inset 0 .25vw 1vw #222;
-webkit-box-shadow: inset 0 .25vw 1vw #222;
box-shadow: inset 0 .25vw 1vw #222;
2016-03-31 17:06:21 -06:00
}
footer .left {
float: left;
padding: 15px 0;
}
footer .left p {
margin: 0;
}
footer a {
font-weight:600;
color: #fff;
}
footer a:hover {
text-decoration: none;
}
footer .right {
text-align: right;
float: right;
padding: 15px 0;
}
footer a .fa {
margin-left: 5px;
font-size: 20px;
color: inherit;
}
footer .fa a:hover, footer .fa a:focus {
color: inherit;
}
@media (max-width: 800px) {
footer {
padding: 0 10px;
}
}
@media (max-width: 600px) {
footer {
text-align: center;
}
footer .left, footer .right {
float: none;
}
footer .right {
padding-top: 0;
}
2017-04-01 11:03:05 -06:00
}