blob: d3cdc767bc403be18423d80d425070b2fb476109 (
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
33
|
.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;
}
|