diff options
| author | garbash <dor.garbash@gmail.com> | 2014-11-30 18:08:22 +0200 |
|---|---|---|
| committer | garbash <dor.garbash@gmail.com> | 2014-11-30 18:08:22 +0200 |
| commit | ae97bf0a841d59cffdf94c34036ddfe0ab925623 (patch) | |
| tree | d23f1b9ec56d8ba066fc089f323479b78c32b607 /res/css/partials/task-alert.scss | |
| parent | 897b200c5ea77b72ea694f912a66129be3ed029c (diff) | |
Task-alert styling - button not-working
Diffstat (limited to 'res/css/partials/task-alert.scss')
| -rw-r--r-- | res/css/partials/task-alert.scss | 36 |
1 files changed, 31 insertions, 5 deletions
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 |
