-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPro.css
More file actions
213 lines (175 loc) · 3.49 KB
/
Copy pathPro.css
File metadata and controls
213 lines (175 loc) · 3.49 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
padding: 0;
margin: 0;
overflow-x: hidden;
}
/* Home Header */
#home-header {
background-color: #1a1919; /* Red background */
color: Red;
padding: 40px 0;
text-align: center;
position: relative;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
.header-content h1 {
font-size: 32px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: bold;
color: #f00c0c;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
margin-top: 10px;
}
nav ul li {
position: relative;
display: inline-block;
}
/* Enhanced Home Link */
nav ul li a {
color: rgb(228, 22, 15);
text-decoration: none;
font-size: 24px; /* Increase font size */
font-weight: bold;
position: relative;
transition: all 0.3s ease; /* Smooth transition for hover effects */
}
/* Hover effect for Home Link */
nav ul li a:hover {
color: #ffeb3b; /* Bright yellow hover color */
transform: scale(1.2); /* Slightly enlarge the text */
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Add a glowing text effect */
}
/* Add a slight animation to make it pop */
nav ul li a:active {
transform: scale(1); /* Reset scale when clicked */
color: #ff9800; /* Change to a different color when clicked */
box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); /* Add subtle glowing effect */
}
/* To-Do Section */
#todo {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
h2.section-title {
text-align: center;
font-size: 28px;
margin-bottom: 20px;
color: #f44336; /* Red color for section title */
}
.todo-input-container {
display: flex;
margin-bottom: 20px;
}
#task-input {
flex: 1;
padding: 10px;
font-size: 16px;
border: 2px solid #ccc;
border-radius: 4px;
}
#add-task-btn {
padding: 10px 20px;
margin-left: 10px;
background-color: #f44336;
color: white;
font-size: 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
#add-task-btn:hover {
background-color: #d32f2f;
}
/* Task List Styling */
ul {
list-style: none;
padding: 0;
}
/* Footer Section */
#footer {
background-color: #333; /* Dark background */
color: #fff; /* White text */
padding: 40px 0;
text-align: center;
}
.footer-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
.brand h1 {
font-size: 30px;
color: #fff;
margin-bottom: 20px;
}
.brand h1 span {
color: #f44336; /* Red for brand initials */
}
.social-icon {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
}
.social-item img {
width: 50px;
height: 50px;
transition: transform 0.3s ease;
}
.social-item img:hover {
transform: scale(1.1); /* Slightly enlarge on hover */
}
footer p {
font-size: 14px;
color: #bbb; /* Light grey text */
margin-top: 20px;
}
footer a {
color: #ffeb3b; /* Bright yellow for links */
text-decoration: none;
}
footer a:hover {
color: #ff9800; /* Change to orange on hover */
}
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px;
margin: 5px 0;
background-color: #f9f9f9;
border-radius: 8px;
}
button {
background-color: #f44336;
color: white;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #d32f2f;
}