/* To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. */ /* Created on : 30-Jul-2018, 12:55:46 Author : podkrizniku */ #notifications { min-height: 500px; .sent_list { display: inline; float: left; width: 470px; min-height: 200px; margin-right: 60px; ul { padding-left: 0; li { list-style-type: none; margin: 5px 0; padding: 5px 8px; background-color: $soft_blue_very_lighten; border: 1px $soft_blue solid; } li.unread { border: 1px $orange solid; background-color: $orange_very_lighten; } } } .recieved_list { display: inline; float: left; width: 470px; min-height: 200px; margin-right: 60px; ul { padding-left: 0; li { list-style-type: none; margin: 5px 0; padding: 5px 8px; background-color: $soft_blue_very_lighten; border: 1px $soft_blue solid; &:hover { cursor: pointer; background-color: $soft_blue; border: 1px $strong_blue solid; } } li.unread { border: 1px $orange solid; background-color: $orange_very_lighten; } li.active { cursor: pointer; border: 1px $strong_blue solid; } } } #message { display: inline; float: left; margin-top: 30px; padding: 20px; width: 415px; background-color: $soft_blue_very_lighten; border: 1px $grey_very_light solid; } .send_form { display: inline; float: left; margin-top: 30px; padding: 20px; width: 415px; background-color: $soft_blue_very_lighten; border: 1px $grey_very_light solid; color: $grey_very_dark !important; input[type="text"] { width: 400px; padding: 3px 5px; border: 1px solid $grey_very_light !important; color: $grey_super_dark !important; } textarea { width: 400px; padding: 3px 5px; border: 1px solid $grey_very_light !important; color: $grey_super_dark !important; } } } #new_notification_alert { cursor: pointer; position: absolute; top: 15px; left: 0; right: 0; margin: 0 auto; padding: 5px 8px; width: 300px; height: 20px; line-height: 20px; text-align: center; vertical-align: middle; font-weight: 600; font-size: 13px; color: white; background-color: $orange; } #unread_notifications { display: none; height: auto; width: 500px; margin: 0 auto; > ul { padding-left: 0; margin-bottom: 50px; line-height: 18px; > li { list-style-type: none; margin: 5px 0; padding: 5px 8px; background-color: $soft_blue_very_lighten; border: 1px $soft_blue solid; } } a { color: $link; } .gdpr_popup_radio { padding-top: 6px; input { vertical-align: top; margin-top: 2px; } } }