Skip to content

Commit

Permalink
Main Title Buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
madprops committed Jan 7, 2025
1 parent 5cc0939 commit 866e36f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1943,12 +1943,21 @@ a:hover
border-style: solid;
border-color: var(--main_title_text_color);
border-width: 0;
border-radius: 20%;
cursor: pointer;
flex-shrink: 0;
flex-grow: 0;
}

/* Border Radius: Top-left, top-right, bottom-right, bottom-left */

#main_title_left_button {
border-radius: 0 20% 20% 0;
}

#main_title_right_button {
border-radius: 20% 0 0 20%;
}

.fixed_main_title_left #main_title_left_button,
.fixed_main_title_right #main_title_right_button
{
Expand Down

0 comments on commit 866e36f

Please sign in to comment.