-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (84 loc) · 1.75 KB
/
style.css
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
:root {
--primary-color: #007bff;
--secondary-color: #6c757d;
--bg-color: #f8f9fa;
--text-color: #212529;
--font-family: 'Arial', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-family);
color: var(--text-color);
background: var(--bg-color);
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1200px;
margin: auto;
}
.header {
background: var(--primary-color);
color: #fff;
padding: 1rem 0;
}
.header .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
max-height: 50px;
}
.nav a {
color: #fff;
margin: 0 0.5rem;
text-decoration: none;
}
.hero {
text-align: center;
padding: 2rem 0;
background: var(--secondary-color);
color: #fff;
}
.hero .btn {
padding: 0.5rem 1rem;
background: var(--primary-color);
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.about, .services, .team, .contact {
padding: 2rem 0;
}
.services .service-grid, .team .team-grid {
display: flex;
gap: 1rem;
justify-content: space-between;
flex-wrap: wrap;
}
.service, .team-member {
flex: 1 1 30%;
background: #fff;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 5px;
text-align: center;
}
.team-member img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}
.footer {
text-align: center;
padding: 1rem 0;
background: var(--primary-color);
color: #fff;
}