| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*=== Feed articles */
- .flux {
- // border-left: 2px solid #ecf0f1;
- background: $white;
- @include transition(all, 0.15s, ease-in-out);
- &:hover {
- background: $grey-lighter;
- &:not(.current):hover .item.title {
- background: $grey-lighter;
- }
- }
- &.current {
- background: $grey-lighter;
- border-left-color: $main-first;
- }
- &.not_read:not(.current) {
- background: $unread-bg; //--------------------
- &:hover .item.title {
- background: $unread-bg;
- }
- }
- &.not_read {
- .item.title {
- a {
- color: $unread-font-color; //--------------------
- }
- }
- .item.website {
- a {
- color: $unread-font-color; //--------------------
- }
- }
- .item.date {
- color: unquote($unread-font-color+"99"); //--------------------
- }
- }
- &.favorite {
- border-left-color: $fav-bg;
- @include transition(all, 0.15s, ease-in-out);
- }
- &.favorite:not(.current) {
- background: $fav-light;
- &:hover .item.title {
- background: $fav-light;
- }
- }
- .website {
- a {
- color: $main-font-color;
- opacity: 0.75;
- }
- .favicon {
- padding: 5px;
- }
- }
- .date {
- color: $main-font-color;
- font-size: 0.85rem;
- opacity: 0.75;
- }
- .bottom {
- font-size: 1rem;
- text-align: center;
- }
- }
- .flux_header {
- font-size: 1rem;
- cursor: pointer;
- border-top: 1px solid $grey-light;
- .title {
- font-size: 1rem;
- }
- }
|