-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.css
More file actions
89 lines (73 loc) · 1.39 KB
/
services.css
File metadata and controls
89 lines (73 loc) · 1.39 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
header {
background-color: inherit;
color: black;
padding: 20px 0;
text-align: center;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 1000;
}
header h1 {
margin: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
h1 {
font-size: 35px;
}
.services{
background-color: #051722;
color: #fff;
padding: 20px 0;
text-align: center;
width: 100%;
top: 0;
left: 0;
}
.services .service-item {
background: url('https://media-public.canva.com/yXJcY/MAFK23yXJcY/1/s2.png');
padding: 20px;
margin: 50px;
border: 8px solid #000000;
display: inline-block;
width: 30%;
box-shadow: 0 0 100px rgba(0,0,0,100);
color: white;
transition: border 0.7s ease;
}
.services .service-item:hover {
border: 8px solid white;
}
.service-link {
text-decoration: none;
}
.service-title {
background: url('https://media-public.canva.com/yXJcY/MAFK23yXJcY/1/s2.png');
color: white;
display: inline-block;
padding: 25px 50px;
border-radius: 10px;
margin: 0;
}
.features-list {
list-style: none;
padding: 0;
margin-top: 30px;
}
.features-list li {
margin: 10px 0;
font-size: 16px;
}
footer {
background: #333;
color: #ffff;
text-align: center;
padding: 20px 0;
position: relative;
width: 100%;
}