Files
attract/src/styles/_dashboard.sass

51 lines
987 B
Sass
Raw Normal View History

2016-10-20 12:54:03 +02:00
/* General style for activities in all places */
2016-10-05 11:11:55 +02:00
.d-activity
2016-10-18 18:24:04 +02:00
font-size: .9em
2016-10-20 11:59:32 +02:00
$activity-highlight-color: #00cc9f
2016-10-05 11:11:55 +02:00
ul
2016-10-18 18:24:04 +02:00
cursor: default
padding: 0 10px
2016-10-05 11:11:55 +02:00
color: $color-text-dark-primary
list-style: none
2016-10-20 12:54:03 +02:00
border-left: thin solid $activity-highlight-color
2016-10-05 11:11:55 +02:00
li
2016-10-18 18:24:04 +02:00
padding: 7px 0
2016-10-20 12:54:03 +02:00
span.date
color: darken($activity-highlight-color, 5%)
position: relative
&:before
content: ''
display: block
position: absolute
bottom: 5px
left: -13px
width: 5px
height: 5px
border-radius: 50%
background-color: $color-background-light
border: thin solid $activity-highlight-color
transition: all 250ms ease-in-out
&:hover span.date:before
background-color: $activity-highlight-color
2016-10-18 18:24:04 +02:00
span.actor
padding: 0 5px
color: $color-text-dark
2016-10-20 12:54:03 +02:00
/* Dashboard specific styles */
.dashboard
.d-stats
padding: 0 20px
.d-activity
padding: 5px 15px
margin: 0 20px
+container-box
a
color: $color-text-dark-primary