-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.css
More file actions
122 lines (99 loc) · 3.92 KB
/
Copy pathshared.css
File metadata and controls
122 lines (99 loc) · 3.92 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
* {
font-family: Arial, Helvetica, sans-serif;
padding: 0; margin: 0;
box-sizing: border-box;
}
body { background: #f8f9fa; color: #333; line-height: 1.6; }
.container { margin: 0 auto; max-width: 1200px; width: 90%; padding: 0 15px; }
header {
padding: 1rem 0;
background: linear-gradient(to right, #3B82F6, #9333EA);
color: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky; top: 0; z-index: 100;
}
.header-content { align-items: center; display: flex; justify-content: space-between; }
.logo {
font-weight: 700; display: flex; align-items: center;
font-size: 1.8rem; text-decoration: none; color: #fff;
}
.logo-icon { margin-right: 10px; font-size: 2rem; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 1.4rem; }
nav ul li a {
text-decoration: none; transition: all .3s ease;
border-radius: 4px; padding: 5px 10px;
color: white; font-weight: 500;
}
nav ul li a:hover, nav ul li a.active {
background-color: rgba(255,255,255,0.20);
}
footer {
padding: 3rem 0; background: #1a1a1a;
margin-top: 4rem; text-align: center; color: white;
}
.footer-content { display: flex; align-items: center; flex-direction: column; }
.footer-links { margin: 2rem 0; display: flex; flex-wrap: wrap; justify-content: center; }
.footer-links a { margin: 0 1rem; text-decoration: none; transition: opacity .3s ease; color: white; }
.footer-links a:hover { opacity: .8; }
.copyright { margin-top: 1rem; font-size: .9rem; opacity: .8; }
.btn {
padding: 14px 28px; cursor: pointer; display: inline-block;
border-radius: 50px; color: #fff; text-decoration: none;
background: #003DA5; transition: all .3s ease; font-size: 1.1rem;
box-shadow: 0 4px 15px rgba(255,107,139,0.3); font-weight: 600; border: none;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255,107,139,0.4);
background: #675AF0;
}
.card {
padding: 2rem; border-radius: 10px; background: white;
margin-bottom: 2rem; transition: transform .3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.card:hover { transform: translateY(-5px); }
.card h2 { margin-bottom: 1rem; color: #675AF0; }
.hero {
padding: 4rem 2rem; text-align: center; color: white;
border-radius: 15px; margin: 2rem 0;
background: linear-gradient(to right, #3B82F6, #9333EA);
}
.hero h1 { margin-bottom: 1rem; font-size: 2.8rem; }
.hero p { margin: 0 auto 2rem; color: rgba(255,255,255,.90); font-size: 1.3rem; max-width: 700px; }
.feature-grid {
gap: 2rem; margin: 3rem 0; display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.feature-card {
border-radius: 10px; padding: 2.5rem 1.5rem;
transition: transform .3s ease; background: white;
text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 3rem; margin-bottom: 1.5rem; color: #675AF0; }
.testimonials {
display: grid; gap: 2rem; margin: 3rem 0;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonial-card {
padding: 2rem; background: white; border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,.08); position: relative;
}
.testimonial-text { margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { align-items: center; display: flex; gap: 12px; }
.author-avatar {
width: 50px; height: 50px; display: flex; color: #fff;
border-radius: 50%; align-items: center; justify-content: center;
font-weight: bold; font-size: 1.2rem; background: #675AF0;
}
.author-info h4 { margin: 0; color: #675AF0; }
.author-info p { font-size: .9rem; margin: 0; color: #666; }
@media (max-width: 768px) {
.header-content { text-align: center; flex-direction: column; gap: .8rem; }
nav ul { justify-content: center; flex-wrap: wrap; }
nav ul li { margin: .3rem; }
.hero h1 { font-size: 2.2rem; }
.feature-grid, .testimonials { grid-template-columns: 1fr; }
}