forked from mdadeeljawaid/Pharmacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutusstyle.css
84 lines (71 loc) · 1.36 KB
/
aboutusstyle.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
* {
box-sizing: border-box;
}
.quote {
width: 100%;
height: 200px;
text-align: center;
}
.quote .text {
margin-top: 10%;
font-size: 50px;
}
.heading {
margin-left: 2%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 32px;
}
.about-para .column {
float: left;
width: 50%;
padding: 2%;
text-align: justify;
font-family: sans-serif;
}
.about-para .image {
width: 100%;
}
/* Clear floats after the columns */
.about-para:after {
content: "";
display: table;
clear: both;
}
.services {
display: table;
height: max-content;
background-color: none;
}
.services .service {
float: left;
width: 21%;
padding: 10px;
margin: 2%;
background-color: rgba(208, 252, 249, 255);
border: 2px solid rgb(15, 153, 146);
border-radius: 30px;
}
.services .service h2 {
text-align: center;
font-size: 26px;
}
.services .service:hover {
transition: all .5s ease;
-webkit-transition: all .5s ease;
box-shadow: inset 0px 0px 20px rgb(116 187 182);
}
.services .service p {
text-align: justify;
}
@media screen and (max-width: 760px) {
.about-para .column {
width: 100%;
}
.services .service {
width: 100%;
margin: 0;
margin-top: 10px;
border: none;
background-color: inherit;
}
}