From ae97bf0a841d59cffdf94c34036ddfe0ab925623 Mon Sep 17 00:00:00 2001 From: garbash Date: Sun, 30 Nov 2014 18:08:22 +0200 Subject: Task-alert styling - button not-working --- res/css/partials/task-alert.scss | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) (limited to 'res/css/partials/task-alert.scss') diff --git a/res/css/partials/task-alert.scss b/res/css/partials/task-alert.scss index 670808f3..c31ea756 100644 --- a/res/css/partials/task-alert.scss +++ b/res/css/partials/task-alert.scss @@ -1,6 +1,32 @@ -.help{ - font-size: 20px; - top: 5px; - left: 10px; - margin-left: 12px; +.task-alert{ + position:fixed; + top: $top-bar-height+$search-bar-height; + width: 100%; + height:$task-alert-height; + background-color: #D3F2F8;//$light-cyan + border-top: #1D6E7F;//$dark-cyan + border-bottom: #1D6E7F;//$dark-cyan } +.task-desc{ + position:fixed; + width:100%; + color: #1D6E7F;//$dark-cyan + height: $task-desc-height; + top: $top-bar-height + $search-bar-height + ($task-alert-height - $task-desc-height)/2; + text-align: center; + font-size: $h3-size; +} + +.task-close-text { + position:fixed; + top: $top-bar-height + $search-bar-height + ($task-alert-height - $task-desc-height)/2 + 1 ; + color: #1D6E7F;//$dark-cyan + right: 70px; + font-size: $h4-size; +} + +.task-close-button { + position: fixed; + top: $top-bar-height + $search-bar-height + ($task-alert-height - $task-desc-height)/2; + right: 50px; +} \ No newline at end of file -- cgit v1.3.1