-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (89 loc) · 2.08 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (89 loc) · 2.08 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
background-color: #1a1a2e; /* Dark blue-purple background */
color: #e0e0e0; /* Light gray text */
line-height: 1.6;
}
header {
background-color: #2c3e50; /* Dark blue-gray header */
color: #e0e0e0;
padding: 1.5rem 0;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
header h1 {
margin: 0;
font-size: 2.8rem;
font-weight: 700;
letter-spacing: 1px;
color: #8e44ad; /* Purple accent for title */
}
header h3 {
margin: 0.5rem 0 0;
font-size: 1.3rem;
font-weight: 400;
opacity: 0.9;
color: #bdc3c7; /* Lighter gray for subtitle */
}
.project-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
}
.project-item {
background-color: #2c3e50; /* Darker background for items */
border: 1px solid #34495e; /* Slightly lighter border */
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
padding: 25px;
text-align: center;
text-decoration: none;
color: #3498db; /* Blue link color */
font-weight: 600;
font-size: 1.1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
min-height: 100px; /* Ensure consistent height */
}
.project-item:hover {
transform: translateY(-8px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
color: #e74c3c; /* Red accent on hover */
}
#practice-projects-heading {
margin-top: 60px;
margin-bottom: 30px;
text-align: center;
font-size: 2.5rem;
color: #8e44ad; /* Purple accent for heading */
font-weight: 700;
letter-spacing: 0.5px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
header h1 {
font-size: 2.2rem;
}
header h3 {
font-size: 1.1rem;
}
.project-list {
grid-template-columns: 1fr;
padding: 20px;
}
.project-item {
min-height: 80px;
font-size: 1rem;
}
#practice-projects-heading {
font-size: 2rem;
margin-top: 40px;
margin-bottom: 20px;
}
}