-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.css
97 lines (82 loc) · 1.37 KB
/
services.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
*{
font-family: Arial, Helvetica, sans-serif;
}
body{
background-color: aliceblue;
}
.container{
display: flex;
height: 100vh;
align-items: center;
gap: 3em;
justify-content: center;
flex-grow: 1;
padding: 0 40px;
}
.div1, .div2, .div3{
width: 21em;
height: 25em;
background-color: #fff;
box-shadow: 5px 5px 25px #0000005f;
padding: 10px 30px;
border-radius: 10px;
}
@media(max-width:1200px)
{
.container{
height: 100%;
flex-direction: column;
}
.div1, .div2, .div3{
padding: 30px;
max-width: 80%;
}
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: #0056b3;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #007bff;
color: white;
text-align: center;
padding: 20px 0;
}
h1 {
margin: 0;
}
main {
padding: 20px;
}
.service {
background-color: #f5f5f5;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
.service h2 {
margin-top: 0;
}
footer {
background-color: #f5f5f5;
text-align: center;
padding: 10px 0;
}
.copyright {
color: black;
margin-left: -1000px;
}