-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (45 loc) · 673 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (45 loc) · 673 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
*{
padding: 0;
margin: 0;
}
body{
font-family: Arial, Helvetica, sans-serif;
background: #ddd;
}
.todo{
background: white;
width: 500px;
padding: 20px;
border-radius: 8px;
margin: 10% auto;
box-shadow: 0 1px 2px #aaa;
}
table {
margin-top: 20px;
width: 100%;
}
td, th {
border: 1px solid #eee;
padding: 6px;
}
.form {
width: 100%;
margin-top: 30px;
}
input {
padding: 6px;
border-radius: 6px;
border: 1px solid #aaa;
width: calc(100% - 12px);
margin-bottom: 10px;
}
.submit {
background: black;
color: white;
padding: 8px;
cursor: pointer;
width: 100%;
border-radius: 6px;
margin-top: 20px;
border: none;
}