-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (84 loc) · 1.69 KB
/
style.css
File metadata and controls
98 lines (84 loc) · 1.69 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
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f2f2f2;
}
.navbar {
background-color: #4CAF50;
padding: 20px 30px;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: bold;
font-size: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.navbar a {
color: white;
text-decoration: none;
margin-left: 20px;
border: 2px solid white;
padding: 6px 12px;
border-radius: 6px;
transition: background-color 0.3s, color 0.3s;
}
.navbar a:hover {
background-color: white;
color: #4CAF50;
}
.nav-left a {
font-size: 24px;
border: none;
padding: 0;
}
.container {
max-width: 800px;
margin: 80px auto;
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
text-align: center;
}
.button,
button {
padding: 10px 20px;
margin: 10px;
background-color: transparent;
border: 2px solid #4CAF50;
color: #4CAF50;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s, color 0.3s;
}
.container .button:hover,
.container button:hover {
background-color: #4CAF50;
color: white;
}
.task-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.task-table th,
.task-table td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
.task-table th {
background-color: #f0f0f0;
}
.complete-link {
color: green;
text-decoration: none;
}
.completed-label {
color: green;
font-weight: bold;
}