diff --git a/_includes/current-projects.html b/_includes/current-projects.html index 24c663af89..c21f2d146c 100644 --- a/_includes/current-projects.html +++ b/_includes/current-projects.html @@ -10,6 +10,9 @@

Current Projects

{{item.alt}}/
+
+
{{ item.status }}
+

{{ item.title }}

{{ item.description }}

{%- if item.links -%} diff --git a/_sass/components/_projects.scss b/_sass/components/_projects.scss index c51a505a08..8fc6fb7040 100644 --- a/_sass/components/_projects.scss +++ b/_sass/components/_projects.scss @@ -68,3 +68,34 @@ margin: 0 0 0 12px; } } + +.project-tmb { + position: relative; +} + +.status-indicator { + float: right; + text-align: center; + margin-left: 10px; + background-color: rgb(255, 255, 151); + width: 82px; + padding: 2px 7px; + border-radius: 6px; + box-shadow: 0 0 8px 0 rgba($color-black, 0.1); +} + +.status-text { + margin: 0px 0px; +} + +.status-Active { + background-color: rgb(187, 255, 187); +} + +.status-Rebooting { + background-color: rgb(164, 213, 255); +} + +.status-Completed { + background-color: rgb(255, 173, 173); +} \ No newline at end of file