aux-search/src/index.scss

79 lines
1.2 KiB
SCSS
Raw Normal View History

body {
position: relative;
min-height: 100vh;
}
#content {
padding-bottom: 4rem;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 4rem;
}
2020-03-28 04:09:01 +00:00
header .navbar.navbar-static-top {
.brand {
padding-bottom: 0;
}
2020-04-10 08:13:50 +00:00
img.logo {
margin-top: -5px;
padding-right: 5px;
line-height: 25px;
height: 25px;
2020-04-10 08:13:50 +00:00
}
ul.nav > li {
line-height: 20px;
}
2020-03-28 04:09:01 +00:00
}
2020-04-10 08:13:50 +00:00
.search-page {
.search-input {
text-align: center;
.input-append input {
font-size: 24px;
height: 40px;
2020-05-11 20:42:57 +00:00
width: 10em;
2020-04-10 08:13:50 +00:00
}
.input-append button {
font-size: 24px;
height: 50px;
}
2020-05-11 20:42:57 +00:00
select {
width: 100px;
}
2020-04-10 08:13:50 +00:00
}
.search-result {
tbody > tr {
2020-04-10 08:13:50 +00:00
cursor: pointer;
}
tbody > td > dl > dd > ul.inline {
margin: 0;
li {
margin: 0;
padding: 0;
}
li::after {
content: ", ";
padding-right: 0.5em;
}
li:last-child::after {
content: "";
}
}
tbody > td > dl > dd > pre {
background: transparent;
border: 0;
padding: 0;
line-height: 20px;
margin: 0;
}
tbody > td > dl > dt,
tbody > td > dl > dd {
margin-bottom: 1em;
}
2020-04-10 08:13:50 +00:00
}
2020-03-28 04:09:01 +00:00
}