Skip to content

Commit

Permalink
[7] Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinHeist committed Jul 27, 2024
1 parent cea1c7d commit 1fd504f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/templates/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,27 @@ body > div:first-of-type {
z-index: 98;
}

/* FLoating log messages (toasts) */
#__current_log {
/* Position message in the lower-right corner */
position: fixed;
bottom: 0.8em;
right: 1em;
/* Color semi-transparent black with a blue right border */
color: white;
background-color: rgba(21, 21, 21, 90%);
border-right: 3px solid rgb(76, 154, 247);
/* Add slight shadow */
box-shadow: rgba(0, 0, 0, 60%) 5px 5px 5px;
/* Curve edges */
border-radius: 0.4em;
padding: 0.785em 1em;
/* Limit width */
max-width: 400px;
/* Position above all other content */
z-index: 9999;
}

/* Stylize "code" color text */
code.color {
/* Add stylized bubble */
Expand Down

0 comments on commit 1fd504f

Please sign in to comment.