38 lines
534 B
CSS
38 lines
534 B
CSS
* {
|
|
font-family: Monospace;
|
|
text-align: center;
|
|
color: #dfdfdf;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.search-bar input {
|
|
background: rgba(10, 2, 0, 0.9);
|
|
border: none;
|
|
width: 100%;
|
|
height: 35px;
|
|
}
|
|
|
|
.search-bar {
|
|
margin: 100px auto 0px auto;
|
|
width: 70%;
|
|
}
|
|
|
|
#bookmarks {
|
|
height: 40px;
|
|
width: 70%;
|
|
margin: 15px auto;
|
|
}
|
|
|
|
.bmark {
|
|
background: rgba(10, 2, 0, 0.9);
|
|
width: 24.7%;
|
|
height: 100%;
|
|
float: left;
|
|
margin: 0 0 3px 3px;
|
|
}
|
|
|
|
a:hover {
|
|
color: #aaaaaa;
|
|
transition: .3s;
|
|
}
|