mirror of
https://github.com/Raghu-Ch/front-end-coding-challenge.git
synced 2026-02-10 04:43:01 -05:00
27 lines
344 B
CSS
27 lines
344 B
CSS
#tag-browser {
|
|
width: 75%;
|
|
padding: 1em;
|
|
margin: 1em auto;
|
|
border: 1px solid black;
|
|
position: relative;
|
|
}
|
|
|
|
#tag-browser .clear-button {
|
|
position: absolute;
|
|
top: 1em;
|
|
;
|
|
right: 1em;
|
|
}
|
|
|
|
#tag-browser .active {
|
|
background: purple;
|
|
color: white;
|
|
}
|
|
|
|
.is-link {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.matching-items-list li {
|
|
cursor: pointer;
|
|
} |