-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.css
More file actions
85 lines (85 loc) · 1.71 KB
/
services.css
File metadata and controls
85 lines (85 loc) · 1.71 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
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.6;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
}
.logo {
width: 35px; /* Adjust the size of the logo as needed */
height: auto;
margin-right: 10px; /* Adjust the spacing between the logo and text */
padding-right:0px
}
header {
align-items: center;
justify-content:space-around;
background-color: #1eadea;
color: rgba(255, 255, 255, 0.916);
padding: 18px;
}
.orange {
color: orange;
}
.blue {
color: blue;
margin-right: 10px;
}
.brand-name{
display: flex;
justify-content: center;
align-items: center;
margin-right: 120px;
}
.brand-name-link {
text-decoration: none; /* Removes the underline */
color: inherit; /* Inherits the color from the parent elements */
display: flex; /* Ensures the link behaves as a flex container */
}
.logo {
font-size: 24px;
font-weight: bold;
margin-left:20px;
}
h1 {
text-align: center;
color: #15ABFF;
padding: 20px;
margin: 0;
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 20px;
}
.service {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
transition: transform 0.2s ease;
}
.service:hover {
transform: translateY(-5px);
}
.service h2 {
color: #2F2A2A;
margin-top: 0;
}
.service ul {
list-style-type: none;
padding: 0;
}
.service ul li {
background: #1eadea;
color: #fff;
margin: 10px 0;
padding: 10px;
border-radius: 5px;
transition: transform 0.2s ease;
}
.service ul li:hover {
transform: translateY(-5px);
}