| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #BOOKMARK-wrapper {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- }
- .BOOKMARK-category {
- text-align: center;
- margin-bottom: 40px;
- }
- .BOOKMARK-category-title {
- font-weight: 500;
- color: #ddd;
- font-size: large;
- }
- .BOOKMARK-category-content {
- width: 80%;
- margin: 0 auto;
- display: flex;
- flex-flow: row wrap;
- justify-content: center;
- }
- .BOOKMARK-tab {
- display: inline-flex;
- justify-content: space-between;
- align-items: center;
- margin: 10px 10px 0 10px;
- height: 50px;
- width: 200px;
- overflow: hidden;
- border: 1px solid;
- border-radius: 5px;
- transition: all 0.2s ease-in-out;
- }
- .BOOKMARK-tab:hover {
- filter: brightness(80%);
- }
- .BOOKMARK-tab-image {
- width: 50px;
- max-width: 50px;
- height: 100%;
- flex-grow: 33;
- }
- .BOOKMARK-tab-image img {
- width: 100%;
- height: 100%;
- padding: 8px;
- object-fit: contain;
- }
- .BOOKMARK-tab-image i {
- width: 100%;
- height: 100%;
- line-height: 44px;
- font-size: 2.2em;
- }
- .BOOKMARK-tab-title {
- flex-grow: 67;
- padding: 0 5px;
- color: white;
- text-align: left;
- font-weight: 500;
- }
|