mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
539 B
38 lines
539 B
/*
|
|
* Site bottom part CSS rules
|
|
*/
|
|
|
|
#site-bottom {
|
|
clear: both;
|
|
width: 100%;
|
|
padding: 20px 0px 20px 0px;
|
|
border: 0;
|
|
margin: 10ex 0px 0px 0px;
|
|
background: #eeeeee;
|
|
color: #888888;
|
|
font-size: 10pt;
|
|
}
|
|
@media print {
|
|
#site-bottom {
|
|
font-size: 8pt;
|
|
}
|
|
}
|
|
|
|
#site-bottom p {
|
|
color: #888888;
|
|
margin-top: 1ex;
|
|
text-align: center;
|
|
}
|
|
#site-bottom a {
|
|
color: #8888dd;
|
|
text-decoration: none;
|
|
}
|
|
#site-bottom a:visited {
|
|
color: #8888dd;
|
|
text-decoration: none;
|
|
}
|
|
#site-bottom a:hover {
|
|
color: #4444dd;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|