-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (90 loc) · 1.89 KB
/
style.css
File metadata and controls
105 lines (90 loc) · 1.89 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: #f8f9fa;
color: #333;
line-height: 1.6;
}
/* Header / Navbar */
header {
background: #ce5bdd;
padding: 1rem 2rem;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
font-size: 1.5rem;
}
nav a {
color: #fff;
margin-left: 15px;
text-decoration: none;
font-weight: 500;
}
nav a:hover {
text-decoration: underline;
}
/* Hero Section */
.hero {
text-align: center;
padding: 4rem 2rem;
background: linear-gradient(75deg, #cb9369, #5e6bfc);
color: #fff;
}
.hero h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.1rem;
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 12px 25px;
background: #ffcd00;
color: #333;
border-radius: 30px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
}
.btn:hover {
background: #e6b800;
}
/* Features */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 3rem 2rem;
}
.feature-box {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s;
}
.feature-box:hover {
transform: translateY(-5px);
}
.feature-box h3 {
margin-bottom: 15px;
color: #ce5bdd;
}
/* Footer */
footer {
text-align: center;
padding: 1rem;
background: #ce5bdd;
color: #fff;
margin-top: 20px;
}