-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtaskPage1.css
80 lines (71 loc) · 1.27 KB
/
taskPage1.css
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
.pending-task {
height: 80px;
}
.task-box{
padding: 5px 0;
height: 80px;
width:90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
position: relative;
justify-content: space-between;
}
.task-name{
font-style: normal;
font-weight: 400;
font-size: 23px;
color: #000000;
}
.task-track {
text-align: center;
max-width: 80px;
background: #FFA8A7;
border-radius: 5px;
padding: 0 2px;
font-style: normal;
font-weight: 400;
font-size: 11px;
color: #FFFFFF;
}
.task-deadline p{
line-height: 80px;
}
.next-button{
display: flex;
justify-content: flex-end;
width: 90%;
margin: 0 auto;
padding: 25px 0 10px 0;
}
.next-button p{
width:80px;
background: #153D80;
border-radius: 5px;
text-align: center;
font-style: normal;
font-weight: 800;
font-size: 14px;
line-height: 30px;
}
.next-button p a{
width:80px;
height:30px;
text-decoration: none;
color: #FFFFFF;
}
@media (max-width: 600px) {
.pending-task {
height: 120px;
}
.task-box{
padding: 5px 0;
height: 120px;
display: block;
}
.task-deadline p{
align-self: center;
margin-top:20px;
line-height: 0;
}
}