57 lines
647 B
CSS
57 lines
647 B
CSS
/* Stylesheet for index page */
|
|
|
|
|
|
|
|
/* Custom wrapper */
|
|
|
|
div.wrapper {
|
|
text-align: center;
|
|
width: 65%;
|
|
}
|
|
|
|
|
|
|
|
/* Index fonts */
|
|
|
|
div.searchbox a.title {
|
|
font-size: 4em;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
div.searchbox a.title:hover {
|
|
color: #009049;
|
|
}
|
|
|
|
|
|
|
|
/* Index search box */
|
|
|
|
div.searchbox input[type=text] {
|
|
margin-top: 2px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
div.searchbox input[type=submit] {
|
|
margin-top: 4px;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
|
|
|
|
/* Index navigation */
|
|
|
|
div.nav {
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
div.nav > a {
|
|
padding: 0.25rem 0.25rem;
|
|
}
|
|
|
|
div.nav a.useraccount {
|
|
color: orange;
|
|
text-decoration: underline;
|
|
}
|