diff --git a/src/styles/_app_base.sass b/src/styles/_app_base.sass index b7cd7c0..56800af 100644 --- a/src/styles/_app_base.sass +++ b/src/styles/_app_base.sass @@ -17,8 +17,6 @@ body min-width: $sidebar-width #col_left, #col_main, #col_right - display: flex - flex-direction: column position: relative flex: 0 0 auto min-width: 150px @@ -89,7 +87,6 @@ nav.sidebar .dropdown min-width: $sidebar-width - .dropdown-menu top: initial bottom: 3px @@ -110,8 +107,7 @@ nav.sidebar li display: block - padding: 0 - margin: 0 + a.navbar-item, button display: flex color: $color-text-light-hint diff --git a/src/styles/_dashboard.sass b/src/styles/_dashboard.sass index c44a476..4831583 100644 --- a/src/styles/_dashboard.sass +++ b/src/styles/_dashboard.sass @@ -1,3 +1,32 @@ +.d-welcome + height: 300px + display: flex + flex-direction: column + align-items: center + justify-content: center + + .welcome-logo + font-size: 5em + color: $color-primary + background-color: white + text-align: center + border-radius: 50% + margin: 15px auto + box-shadow: 0 0 65px rgba(black, .1) + + i + display: block + margin: 15px + + .welcome-title + font-size: 1.8em + font-weight: lighter + + .welcome-text + padding: 10px + color: $color-text-dark-primary + + /* General style for activities in all places */ .d-activity font-size: .9em diff --git a/src/styles/_shots.sass b/src/styles/_shots.sass index 7d54a1b..96139f6 100644 --- a/src/styles/_shots.sass +++ b/src/styles/_shots.sass @@ -149,7 +149,6 @@ border-color: $color-text-dark-primary #item-details - height: 100% display: flex flex-direction: column diff --git a/src/templates/attract/index.jade b/src/templates/attract/index.jade index 23731f0..fb41867 100644 --- a/src/templates/attract/index.jade +++ b/src/templates/attract/index.jade @@ -13,7 +13,7 @@ #col_right .dashboard .d-stats - h3 Shot statistics + h3 Shot Statistics | {% for proj, summary in projs_with_summaries %} h4 diff --git a/src/templates/attract/index_anon_left_column.jade b/src/templates/attract/index_anon_left_column.jade index 58f2e06..ec8d98a 100644 --- a/src/templates/attract/index_anon_left_column.jade +++ b/src/templates/attract/index_anon_left_column.jade @@ -1,3 +1,14 @@ -h3 Welcome to Attract -p This is the left column. It contains left-handed things. +.d-welcome + .welcome-logo + i.pi-attract + .welcome-title Welcome to Attract + + .welcome-text + p Production Management Software + +.d-projects + | {% for proj, summary in projs_with_summaries %} + h4 + a(href="{{ url_for('attract.shots.perproject.index', project_url=proj.url) }}") {{ proj.name }} + | {% endfor %}