diff options
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/pysite/_variables.scss | 5 | ||||
| -rw-r--r-- | scss/pysite/pages/main/bot/_clean_logs.scss | 27 | 
2 files changed, 31 insertions, 1 deletions
diff --git a/scss/pysite/_variables.scss b/scss/pysite/_variables.scss index 4e86b1d0..936ce5cc 100644 --- a/scss/pysite/_variables.scss +++ b/scss/pysite/_variables.scss @@ -21,7 +21,10 @@ $winner_colour: #E0B000;  $winner_colour_hover: #DAA900;  $winner_colour_active: #DAA015; -$clean_logs_background: #18191D; +$clean_logs_background: #36393E; +$clean_logs_embed_background: #2E3136; +$clean_logs_embed_border: #282B30; +$clean_logs_anchor_color: #A9C4DA;  $clean_logs_timestamp: #75797F; diff --git a/scss/pysite/pages/main/bot/_clean_logs.scss b/scss/pysite/pages/main/bot/_clean_logs.scss index 002a5e51..980ca9cf 100644 --- a/scss/pysite/pages/main/bot/_clean_logs.scss +++ b/scss/pysite/pages/main/bot/_clean_logs.scss @@ -17,4 +17,31 @@      color: $white;      margin-bottom: 1em;    } + +  .embed { +    background-color: $clean_logs_embed_background; +    border: 2px solid $clean_logs_embed_border; +    border-radius: 5px; +    color: $white; +    margin-bottom: 1.5em; +    padding: 1em; +    width: 60%; + +    .footer { +      font-size: 9px; +    } + +    .fields { +      display: flex; +      flex-wrap: wrap; +    } + +    .field { +      flex: 50%; +    } + +    a { +      color: $clean_logs_anchor_color; +    } +  }  }  |