-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
131 lines (129 loc) · 2.41 KB
/
Copy pathstyles.css
File metadata and controls
131 lines (129 loc) · 2.41 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
body {
margin: 0;
font-family: 'Segoe UI', Arial, sans-serif;
background: #f9f9f9;
color: #222;
}
header {
background: linear-gradient(120deg, #494848 0%, #000000 100%);
color: #fff;
padding-bottom: 60px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 8vw 0 8vw;
}
.logo {
font-size: 2rem;
font-weight: bold;
letter-spacing: 2px;
}
nav ul {
list-style: none;
display: flex;
gap: 30px;
margin: 0;
padding: 0;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 1.1rem;
transition: color 0.2s;
}
nav a:hover {
color: #ffd700;
}
.hero {
text-align: center;
margin-top: 60px;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 30px;
}
.btn {
background: #07ec7a;
color: #000000;
padding: 14px 36px;
border: none;
border-radius: 30px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
text-decoration: none;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
transition: background 0.2s, color 0.2s;
}
.btn:hover {
background: #fff;
color: #2575fc;
}
main {
max-width: 1000px;
margin: -40px auto 0 auto;
background: #fff;
border-radius: 18px;
box-shadow: 0 8px 32px rgba(80,80,120,0.08);
padding: 40px 30px 30px 30px;
}
section {
margin-bottom: 50px;
}
h2 {
color: #2575fc;
margin-bottom: 18px;
font-size: 2rem;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}
.project-card {
background: #f3f7fa;
border-radius: 14px;
box-shadow: 0 2px 12px rgba(80,80,120,0.06);
padding: 28px 22px;
transition: transform 0.18s, box-shadow 0.18s;
}
.project-card:hover {
transform: translateY(-6px) scale(1.03);
box-shadow: 0 8px 32px rgba(80,80,120,0.13);
}
.project-card h3 {
margin-top: 0;
color: #6a11cb;
}
#contact a {
color: #2575fc;
text-decoration: underline;
}
footer {
text-align: center;
padding: 24px 0;
background: #f3f7fa;
color: #888;
font-size: 1rem;
margin-top: 40px;
border-radius: 0 0 18px 18px;
}
@media (max-width: 700px) {
nav {
flex-direction: column;
gap: 18px;
padding: 24px 4vw 0 4vw;
}
.hero h1 {
font-size: 2.1rem;
}
main {
padding: 22px 8px 18px 8px;
}
}