-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (73 loc) · 1.31 KB
/
style.css
File metadata and controls
74 lines (73 loc) · 1.31 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
header.navbar {
background-color: #3b82f6;
color: white;
padding: 20px;
text-align: center;
}
header.navbar h1 {
margin-bottom: 10px;
}
header.navbar nav a {
color: white;
margin: 0 10px;
text-decoration: none;
font-weight: bold;
}
section {
padding: 60px 20px;
text-align: center;
}
#hero {
background: linear-gradient(to right, #4f46e5, #3b82f6);
color: white;
}
.cta-button {
display: inline-block;
margin-top: 20px;
background-color: white;
color: #3b82f6;
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #e0e0e0;
}
#services ul {
list-style: none;
padding: 0;
}
#services li {
margin: 12px 0;
font-size: 1.1em;
}
.portfolio-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.portfolio-grid img {
width: 250px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
footer {
background-color: #3b82f6;
color: white;
text-align: center;
padding: 20px;
}