Browse Source

update main.css (filter controls for 'Index' pages mostly).

I updated the CSS for links (a tags) too.
stable
Craig Oates 2 years ago
parent
commit
eba62e0925
  1. 59
      static/css/main.css

59
static/css/main.css

@ -21,21 +21,22 @@ button {
} }
a:link { a:link {
/* color: #005585; */ color: black;
/* text-decoration: none; */ text-decoration: none;
} }
a:visited { a:visited {
/* color: #485270; */ color: black;
} }
a:hover { a:hover {
/* color: #b83800; */ text-decoration: underline;
/* text-decoration: underline; */
} }
input[type=file], input[type=file],
input[type=text], input[type=text],
input[type=password] { input[type=password] {
border: 1px solid silver; border: 1px solid black;
border-radius: 8px; border-radius: 8px;
margin: 0px; margin: 0px;
padding: 4px; padding: 4px;
@ -677,6 +678,52 @@ hr {
text-align: center; text-align: center;
} }
.fe-index {
max-width: 880px;
width: 100%;
margin: 0px auto;
}
.fe-index-entry {
margin: 8px 0px;
}
/* Start of Index Filter */
#fe-search-filter {
box-sizing: border-box;
width: 100%;
margin-bottom: 15px;
padding: 10px;
}
#fe-search-filter-list {
list-style: none;
margin: 0;
padding: 0;
}
#fe-search-filter-list li {
padding: 0px;
}
#fe-search-filter-list li.hide {
display: none;
}
/* End of Index Filter Stuff */
.fe-index-entry img {
max-height: 100px;
}
.fe-hint {
margin: 0px;
padding: 0px;
font-size: 11px;
color: slategrey;
}
.fe-article { .fe-article {
display: flex; display: flex;
justify-content: center; justify-content: center;

Loading…
Cancel
Save