File size: 772 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
@import "./variables.css";

.container {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 2rem;
}

.task-container {
 border-radius: 0.25rem;
 background-color: #fff;
 padding: 1rem;
}

.task-title {
 font-weight: bold;
 font-size: 1.25rem;
}

.task-deadline {
 font-size: 0.875rem;
}

.task-description {
 font-size: 0.875rem;
}

.task-field {
 width: 100%;
 outline: none;
 background-color: #f5f5f5;
 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: #3498db;
 color: #fff;
 border: none;
 cursor: pointer;
 padding: 1rem;
 transition: background-color 0.3s ease;
}

.task-button:hover {
 background-color: #555;
 color: #fafafa;
}