summaryrefslogtreecommitdiff
path: root/res/css/partials/task-alert.scss
blob: b10d4805ee07cb435bc72649ee34540b110d0d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.task-alert{
  position:relative;
  width: 100%;
  height:$task-alert-height;
  background-color: $light-cyan;
  color: $darker-cyan;
  border-top: 1px solid $dark-cyan;
  border-bottom: 1px solid $dark-cyan;
  z-index: 1;
}

.task-desc{
  position:fixed;
  width:100%;
  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 ;
  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;
}