31 lines
489 B
CSS
31 lines
489 B
CSS
|
blockquote {
|
||
|
color: green;
|
||
|
font-style: oblique;
|
||
|
}
|
||
|
|
||
|
/* For search bar */
|
||
|
.search {
|
||
|
color: gray;
|
||
|
width: 400px;
|
||
|
max-width: 85vw;
|
||
|
position: relative;
|
||
|
margin: 0.5rem auto 1.2rem;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
#search {
|
||
|
padding: 0.7rem 1rem;
|
||
|
border-radius: 5px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#clear-search {
|
||
|
position: absolute;
|
||
|
right: 4px;
|
||
|
top: 5px;
|
||
|
height: 30px;
|
||
|
width: 30px;
|
||
|
color: #888;
|
||
|
cursor: pointer;
|
||
|
transition: color 180ms ease-in-out;
|
||
|
}
|