-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle2.css
More file actions
84 lines (76 loc) · 1.43 KB
/
style2.css
File metadata and controls
84 lines (76 loc) · 1.43 KB
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
* {
box-sizing: border-box;
}
#head{
color: brown;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
}
.container li{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
margin: 10px;
padding: 15px;
border-radius: 10px;
list-style: none;
text-align: center;
}
/* #milk{
background-color:rgb(241, 192, 235);
border-radius: 20px;
margin: 5px;
padding: 5px;
font-size: 20px;
}*/
#todo-form{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
float: center;
}
/*.form-to-do{
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
}*/
#add-task{
background-color:#FCC6FF ;
height: 30px;
width: 80px;
border-radius: 20px;
}
#new-task{
background-color: #FCC6FF;
color: black;
width: 200px;
height: 30px;
border-radius: 20px;
}
.header {
background-color: #4635B1;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar {
display: flex;
}
.nav-links {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.nav-links li {
margin-left: 20px;
}
.nav-links a {
color: white;
text-decoration: none;
padding: 8px 16px;
transition: background-color 0.3s;
}
.nav-links a:hover {
background-color: #575757;
border-radius: 4px;
}