-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.26 KB
/
style.css
File metadata and controls
92 lines (80 loc) · 1.26 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
body {
background-color: lightgray;
margin: 0;
padding: 0;
}
.navbar {
height: 70px;
background-color: white;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}
.logo {
font-size: 30px;
font-weight: 700;
margin-left: 20px;
}
.navitems a{
margin-left: 40px;
margin-right: 10px;
text-decoration: none;
color: black;
}
.hero {
text-align: center;
margin-top: 40px;
}
.hero p {
color: grey;;
}
.hero button {
background-color: #3b82f6;
color: white;
border-radius: 5px;
padding: 10px;
border: none;
}
.services {
text-align: center;
padding: 50px 20px;
background-color: white;
margin-top: 40px;
}
.cards {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.card {
background: #fff;
padding: 20px;
width: 250px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.card img {
height: 150px;
width: 200px;
}
.card h3 {
margin-bottom: 10px;
}
.card p {
margin-bottom: 15px;
color: #666;
}
.card button {
padding: 8px 15px;
background: #3b82f6;
color: white;
border: none;
border-radius: 5px;
}
footer {
text-align: center;
padding: 30px;
margin-top: 30px;
}