blob: 02ddc202204278e1de02ea354d30fff043ffe9f3 (
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:$four-baselines;
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: $icon-height;
top: $three-baselines + $four-baselines + ($four-baselines - $icon-height)/2;
text-align: center;
font-size: $h3-size;
}
.task-close-text {
position:fixed;
top: $three-baselines + $four-baselines + ($four-baselines - $icon-height)/2 + 1 ;
right: 70px;
font-size: $h4-size;
}
.task-close-button {
position: fixed;
top: $three-baselines + $four-baselines + ($four-baselines - $icon-height)/2;
right: 50px;
}
|