File size: 1,176 Bytes
1512e66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
html,
body {
 margin: 0;
 padding: 0;
 font-family: Arial, sans-serif;
 background-color: var(--background-color);
}

.container {
 margin: 0;
 padding: 0;
 display: flex;
 flex-flow: row wrap;
 justify-content: space-evenly;
}

.task-container {
 background-color: var(--primary-lightgray-color);
 box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.2);
 border-radius: 0.25rem;
 padding: 1rem;
 margin-bottom: 1rem;
}

.task-title {
 font-weight: bold;
 font-size: 1.25rem;
 line-height: 1.5;
 color: var(--text-color);
}

.task-deadline {
 font-size: 0.75rem;
 line-height: 1.25;
 color: var(--text-color);
}

.task-description {
 font-size: 0.875rem;
 line-height: 1.25;
 color: var(--text-color);
}

.task-field {
 width: 100%;
 outline: none;
 background-color: var(--primary-beige-color);
 padding: 0.5rem;
 border: none;
 border-radius: 0.25rem;
 text-align: center;
}

.task-button {
 display: inline-block;
 width: 100%;
 font-size: 1.25rem;
 background-color: var(--primary-color);
 color: #fff;
 border: none;
 cursor: pointer;
 padding: 1rem;
 transition: background-color 0.3s ease;
}

.task-button:hover {
 background-color: var(--primary-color);
 color: #fff;
}