33 lines
480 B
CSS
33 lines
480 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: 50px auto 0px auto;
|
|
width: 70%;
|
|
}
|
|
|
|
#bookmarks {
|
|
height: 40px;
|
|
width: 70%;
|
|
margin: 15px auto;
|
|
}
|
|
|
|
.bmark {
|
|
background: rgba(10, 2, 0, 0.9);
|
|
width: 228px;
|
|
height: 100%;
|
|
float: left;
|
|
margin-left: 3px;
|
|
}
|