You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
963 B
CSS

.query {
font-size: 1.3em;
background-color: white;
color: black;
border: 1px solid teal;
border-radius: 5px;
padding: .4em .8em;
width: 100%;
box-sizing: border-box;
}
.noResults {
padding: .6em 1em;
}
.results {
border: 1px solid teal;
border-radius: 5px;
/* margin-top: 1em; */
.result {
border-top: 1px solid teal;
padding: .6em 1em;
font-size: .8em;
&.first {
border-top: 0;
font-size: 1em
}
.name {
font-size: 1.3em;
.manufacturer {
color: #4f4e4e;
margin-right: .3em;
}
.model {
font-weight: bold;
}
}
.description {
color: #4f4e4e;
margin-top: .2em;
}
.download {
float: right;
text-decoration: none;
border-radius: 3px;
padding: .3em .8em;
margin-top: -.3em;
margin-right: -.7em;
border: 1px solid #006262;
background-color: #039f9f;
color: white;
}
}
}
.sources {
color: gray;
font-size: 0.8em;
margin-top: 1em;
margin-bottom: .3em;
}