-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.css
111 lines (92 loc) · 1.6 KB
/
todo.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
header{
background-color:#000;
color:white;
border-bottom:#ff7f50 10px solid;
padding-top:35px;
padding-bottom:25px;
font-size:30px;
}
.bgcolor{
background-image: linear-gradient(#6495ED,#f4f4f4);
}
nav{
margin:0;
text-decoration:none;
padding:8px 0 8px 0;
background-color:#6495ED;
width:100%;
overflow:hidden;
}
nav ul{
margin:0;
padding:0;
}
nav li{
float:left;
padding-left:15px;
padding-right:15px;
display:inline;
}
li a{
text-decoration:none;
text-transform:uppercase;
font-size:18px;
color:#fff;
}
li.current a{
color:black;
}
a:hover{
color:#000;
font-weight:bold;
}
.tablecap{
text-align: center;
color: #111212;
font-size: 80px;
margin:0 40px 80px 0;
}
th, td {
padding-top: 10px;
padding-bottom: 20px;
padding-left: 30px;
padding-right: 40px;
}
#button{
color: #0c0d0d;
font-size: larger;
margin:50px 40px 300px 400px;
}
#button1{
color: #1a1a1b;
font-size: larger;
margin:0 40px 300px 400px;
}
.task{
text-align: center;
color: #b64390;
font-size: 80px;
margin:0 40px 80px 0;
}
.name{
text-align: center;
font-size: 20px;
margin:20px 40px 30px 40px;
}
.time{
text-align: center;
font-size: 20px;
margin:20px 40px 30px 40px;
}
#addtolist{
color: #0c1014;
font-size: larger;
margin:50px 40px 300px 800px;
}
footer{
text-align:center;
background-color:#ff7f50;
color:#000;
padding:20px 0 10px 0;
margin:0;
}