diff options
Diffstat (limited to 'app/assets/stylesheets/components/code_of_honor.css')
-rw-r--r-- | app/assets/stylesheets/components/code_of_honor.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components/code_of_honor.css b/app/assets/stylesheets/components/code_of_honor.css new file mode 100644 index 0000000..dbbd267 --- /dev/null +++ b/app/assets/stylesheets/components/code_of_honor.css @@ -0,0 +1,11 @@ +#code-of-honor { + width: 50%; + margin: 1em auto; + padding: 1em; + color: white; + + border-radius: 1em; +} +#code-of-honor.accepted { background-color: forestgreen; } +#code-of-honor.rejected { background-color: firebrick; } + |