123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- @import 'nib'
- $spaceBetweenTiles = 16px
- .board-list
- margin: 0 ($spaceBetweenTiles/2)
- li
- float: left
- width: 25%
- box-sizing: border-box
- position: relative
- &.starred
- .fa-star,
- .fa-star-o
- opacity: 1
- .board-list-item
- overflow: hidden;
- background-color: #999
- color: #f6f6f6
- height: 90px
- font-size: 16px
- line-height: 22px
- border-radius: 3px
- display: block
- font-weight: 700
- min-height: 18px
- padding: 8px
- margin: ($spaceBetweenTiles/2)
- position: relative
- text-decoration: none
- &.tile
- background-size: auto
- background-repeat: repeat
- .board-list-item-sub-name
- color: rgba(255, 255, 255, .5)
- display: block
- font-size: 14px
- font-weight: 400
- line-height: 22px
- .board-list-item-desc
- color: #fff
- display: block
- font-size: 14px
- font-weight: 400
- line-height: 18px
- .js-add-board
- text-align:center
- .label
- font-weight: normal
- line-height:90px
- :hover
- background-color:#939393
- .fa-star,
- .fa-star-o
- bottom: 0
- font-size: 14px
- height: 18px
- line-height: 18px
- opacity: 0
- padding: 9px 9px
- position: absolute
- right: 0
- top: 0
- transition-duration: .15s
- transition-property: color, font-size, background
- .fa-circle
- bottom: 0;
- font-size: 10px;
- height: 10px;
- line-height: 10px;
- padding: 9px 9px;
- position: absolute;
- right: 0;
- transition-duration: .15s
- transition-property: color, font-size, background
- .has-overtime-card-active
- color: #eb4646 !important
- .no-overtime-card-active
- color: #3cb500 !important
- .is-star-active
- color: white
- li:hover a
- &:hover
- .fa-star,
- .fa-star-o
- color: white
- .fa-star,
- .fa-star-o
- color: white
- opacity: .75
- &:hover
- font-size: 18px
- opacity: 1
- &.is-star-active
- opacity: 1
- .board-backgrounds-list
- .board-background-select
- box-sizing: border-box
- display: block
- float: left
- width: 50%
- padding-top: 12px
- position: relative
- z-index: 1
- &:nth-child(-n + 2)
- padding-top: 0
- &:nth-child(2n)
- padding-left: 6px
- &:nth-child(2n+1)
- padding-right: 6px
- .background-box
- border-radius: 3px
- background-size: cover
- display: block
- height: 74px
- position: relative
- width: 100%
- cursor: pointer
- display: flex
- align-items: center
- justify-content: center
- i.fa-check
- font-size: 25px
- color: white
- @media screen and (max-width: 800px)
- .board-list
- height: 100%
- overflow: scroll
- li
- width: 33.3%
- .board-list-item
- overflow: hidden
- .board-list-item-sub-name
- position: relative
- top: -100px
- left: -100px
- @media screen and (max-width: 360px)
- li
- width: 50%
|