-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gantt-Chart.php
165 lines (143 loc) · 4.14 KB
/
Gantt-Chart.php
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Task Management</title>
<style>
/* Linear Gradient Background */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background: linear-gradient(to right,
#ff5733,
#ffc300,
#4caf50);
/* Customize gradient colors */
color: black;
text-align: center;
}
/* Container */
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
/* Header Styles */
.header {
text-align: center;
padding: 20px;
background-color: rgba(255,
255,
255,
0.2);
/* Semi-transparent header background */
border-radius: 8px 8px 0 0;
/* Rounded top corners */
}
.header a {
color: black;
text-decoration: none;
margin: 0 20px;
font-size: 25px;
transition: transform 0.3s, background-color 0.3s, font-size 0.3s;
/* Smooth hover effect for transform, background, and font-size */
}
.header a:hover {
transform: scale(2);
/* Enlarge on hover */
font-size: 30px;
/* Larger font size on hover */
}
/* Background color and larger size for "List" link */
.header a.gantt {
background-color: skyblue;
padding: 10px;
border-radius: 10px;
}
/* Main Section Styles */
.main-section {
background-color: rgba(255,
255,
255,
0.2);
/* Semi-transparent card background */
padding: 5px;
padding-bottom: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 0 0 8px 8px;
/* Rounded bottom corners */
}
#Assign_Member {
width: 88.5%;
}
#priority {
width: 88.5%;
}
/* Input Fields */
.input-field {
width: 85%;
font-size: 18px;
padding: 10px;
border: none;
border-color: darkgreen;
border-radius: 4px;
margin-bottom: 10px;
}
/* Button Styles */
.btn {
background-color: darkgreen;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
/* Smooth hover effect */
}
.btn:hover {
background-color: maroon;
color: yellow;
}
/* Add this to your existing CSS */
.alert {
padding: 20px;
background-color: green;
color: white;
margin-bottom: 15px;
position: relative;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
</style>
</head>
<body>
<header class="header">
<a href="TaskCreateForm.php" class="list">List</a>
<a href="TaskBoard.php" class="board">Board</a>
<a href="Gantt-chart.php" class="gantt">Gantt-Chart</a>
<a href="Report.php" class="report">Report</a>
</header>
<div class="container">
<div class="main-section">
</div>
</div>
</body>
</html>