-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (91 loc) · 1.72 KB
/
style.css
File metadata and controls
91 lines (91 loc) · 1.72 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
body {
margin: 0;
padding: 0;
background: url('images/20250706_204940.jpg') center/cover no-repeat fixed;
color: #eceff4;
font-family: 'Segoe UI', sans-serif;
}
nav {
display: flex;
gap: 1.5rem;
padding: 1rem;
background: rgba(0, 0, 0, 0.7);
position: fixed;
width: 100%;
top: 0;
z-index: 10;
font-size: 12px;
}
nav a {
color: #eceff4;
text-decoration: none;
}
.intro-section {
background: url('images/2bcba032bdc2e9638ba12a3757286dc6.jpg') center/cover no-repeat;
padding: 5rem 2rem;
color: #fff;
display: flex;
align-items: flex-start;
justify-content: flex-start;
}
.intro-text h1 {
font-size: 3rem;
margin: 0;
}
.small-text {
font-size: 0.9rem;
margin-top: 1rem;
max-width: 400px;
}
.projects-header {
background: url('images/20250706_204940.jpg') center/cover no-repeat;
padding: 4rem 2rem;
color: #fff;
text-align: center;
}
.projects-header h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.projects-header .small-text {
font-size: 0.9rem;
max-width: 600px;
margin: auto;
}
.projects-header .subtitle {
margin-top: 2rem;
font-size: 1.2rem;
font-weight: 500;
}
section {
padding: 4rem 2rem;
}
h2 {
font-size: 1.5rem;
text-align: center;
margin-bottom: 2rem;
}
.projects, .blogs, .gallery {
display: grid;
gap: 1.5rem;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.item {
background: rgba(0, 0, 0, 0.6);
padding: 1rem;
border-radius: 10px;
transition: 0.3s;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.item:hover {
background: rgba(0, 0, 0, 0.8);
transform: scale(1.02);
}
.item img {
width: 100%;
border-radius: 8px;
}
.item a {
color: #eceff4;
text-decoration: none;
}