diff options
| author | 2018-07-29 09:53:01 +0000 | |
|---|---|---|
| committer | 2018-07-29 09:53:01 +0000 | |
| commit | c3cbadf64c1d568e957274e331241691de356f7f (patch) | |
| tree | 3c41f029f67adda015590ed6553b1dbf30c2aabf /scss/pysite/pages/main | |
| parent | Fix typo in infractions table definition (diff) | |
| parent | Addressing gdude comments (diff) | |
Merge branch 'clean_command' into 'master'
Clean command API and frontend
See merge request python-discord/projects/site!26
Diffstat (limited to 'scss/pysite/pages/main')
| -rw-r--r-- | scss/pysite/pages/main/bot/_clean_logs.scss | 47 | 
1 files changed, 47 insertions, 0 deletions
diff --git a/scss/pysite/pages/main/bot/_clean_logs.scss b/scss/pysite/pages/main/bot/_clean_logs.scss new file mode 100644 index 00000000..980ca9cf --- /dev/null +++ b/scss/pysite/pages/main/bot/_clean_logs.scss @@ -0,0 +1,47 @@ +.clean-logs { + +  background-color: $clean_logs_background; + +  .nick { +    font-weight: 700; +  } + +  .time { +    color: $clean_logs_timestamp; +    font-size: 11px; +    font-weight: normal; +    margin-left: .8em; +  } + +  .text { +    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; +    } +  } +}  |