-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (78 loc) · 1.97 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (78 loc) · 1.97 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
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Poppins", sans-serif; color: #222; background: #fafafa; line-height: 1.6; }
/* Navbar */
nav {
background: #212121;
color: white;
padding: 0.8rem 0;
position: sticky;
top: 0;
z-index: 100;
}
.nav-container {
max-width: 1100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo { font-weight: bold; font-size: 1.3rem; letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links li a { color: white; text-decoration: none; font-weight: 500; }
.nav-links li a:hover { color: #ff7043; }
/* Sections */
.section { padding: 4rem 1rem; }
.container { max-width: 1000px; margin: 0 auto; }
/* Home */
.home {
background: linear-gradient(135deg, #ff9a9e, #fad0c4);
text-align: center;
padding: 6rem 1rem;
}
.home h1 { font-size: 2.5rem; margin-bottom: 1rem; color: #212121; }
.home p { font-size: 1.1rem; margin-bottom: 2rem; }
.btn {
background: #ff7043;
color: white;
padding: 0.7rem 1.5rem;
border-radius: 25px;
text-decoration: none;
transition: background 0.3s;
}
.btn:hover { background: #e64a19; }
/* About */
.about { background: #fff3e0; text-align: center; }
.about h2 { color: #e64a19; margin-bottom: 1rem; }
/* Links */
.links h2 { text-align: center; color: #e64a19; margin-bottom: 2rem; }
.links-grid {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.link-card {
background: #fff;
padding: 1.5rem;
border-radius: 12px;
text-align: center;
width: 180px;
text-decoration: none;
color: #212121;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.link-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.link-card i { margin-bottom: 0.5rem; color: #ff7043; }
/* Footer */
footer {
background: #212121;
color: white;
text-align: center;
padding: 1rem 0;
font-size: 0.9rem;
}