-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (36 loc) · 817 Bytes
/
style.css
File metadata and controls
36 lines (36 loc) · 817 Bytes
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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form {
margin-bottom: 20px;
}
#taskDescription {
width: 750px;
height: 300px;
resize: vertical;
font-family: 'Times New Roman', monospace;
font-size: large;
}
#taskName {
width: 750px;
height: 20px;
resize: horizontal;
font-family: 'Times New Roman', monospace;
font-size: large;
}
#taskDeadline {
resize: horizontal;
font-family: 'Times New Roman', monospace;
font-size: large;
}