We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cbe93d commit b31ed5bCopy full SHA for b31ed5b
index.html
@@ -54,6 +54,19 @@
54
color: red;
55
font-size: 18px;
56
}
57
+
58
+ #filter-books {
59
+ border-radius : 45px;
60
+ border : none;
61
+ outline : none;
62
+ height : 38px;
63
+ padding : 0 5px;
64
+ }
65
66
+ #filter-books:focus{
67
+ outline : 3px solid rgb(46, 123, 255);
68
69
70
</style>
71
72
</head>
@@ -74,8 +87,8 @@
74
87
75
88
</ul>
76
89
<form class="form-inline my-2 my-lg-0">
77
- <select name="filter" id="filter-books" class="btn btn-light mr-sm-2">
78
- <option value="all" selected>All</option>
90
+ <select name="filter" id="filter-books" class="form-select mr-sm-2">
91
+ <option value="all" selected >All</option>
79
92
<option value="book">Name</option>
80
93
<option value="bookauthor">Author</option>
81
94
<option value="bookType">Type</option>
0 commit comments