55 lines
912 B
CSS
55 lines
912 B
CSS
|
.pagecontent {
|
||
|
background: white;
|
||
|
}
|
||
|
|
||
|
.pagegradient {
|
||
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0) 50px);
|
||
|
margin: 0;
|
||
|
min-height: 100vh;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.search-result-list > li {
|
||
|
list-style-type: none;
|
||
|
padding: 10px;
|
||
|
border-top: 1px dimgray solid;
|
||
|
margin-top: 5px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
word-break: break-all;
|
||
|
}
|
||
|
|
||
|
.search-result {
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
.search-title {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.search-result:visited {
|
||
|
color: dimgray;
|
||
|
}
|
||
|
|
||
|
.search-url {
|
||
|
font-size: 0.8em;
|
||
|
color: dimgray;
|
||
|
}
|
||
|
|
||
|
.search-relevance {
|
||
|
color: dimgray;
|
||
|
}
|
||
|
|
||
|
.search-description {
|
||
|
color: black;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
.wikipedia-complication, .unit_converter-complication {
|
||
|
background-image: url("/static/themes/water/bg.png");
|
||
|
border-radius: 6px;
|
||
|
width: 100%;
|
||
|
padding: 20px;
|
||
|
box-shadow: dimgray 0 0 10px;
|
||
|
}
|