-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAbout Us CSS.css
135 lines (111 loc) · 2.34 KB
/
About Us CSS.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.section {
width: 100%;
min-height: 100vh;
background: #c8efd1;
}
.container {
width: 80%;
display: block;
margin: auto;
padding-top: 100px;
}
.content-section {
float: left;
width: 55%;
}
.image-section {
float: right;
width: 40%;
}
.image-section img {
width: 100%;
height: auto;
}
.content-section .title {
text-transform: uppercase;
font-size: 28px;
}
.content-section .content h3 {
margin-top: 20px;
color: #5d5d5d;
font-size: 19px;
}
.content-section .content p {
margin-top: 10px;
font-size: 17px;
line-height: 1.5;
}
.content-section .content .button {
margin-top: 30px;
}
.content-section .content .button a {
background-color: #3d3d3d;
padding: 12px 40px;
text-decoration: none;
color: #fff;
font-size: 25px;
letter-spacing: 1.5px;
}
.content-section .content .button a:hover {
background-color: #a52a2a;
color: #fff;
}
.content-section .social {
margin: 40px 40px;
}
.content-section .social i {
color: black;
font-size: 30px;
padding: 0px 10px;
}
.content-section .social i:hover {
transition: 0.4s all ease-out;
cursor: pointer;
color: #32b350;
}
@media screen and (max-width: 768px) {
.container {
width: 80%;
display: block;
margin: auto;
padding-top: 50px;
}
.content-section {
float: none;
width: 100%;
display: block;
margin: auto;
}
.image-section {
float: none;
width: 100%;
display: block;
margin: auto;
}
.image-section img {
width: 100%;
height: auto;
display: block;
margin: auto;
}
.content-section .title {
text-align: center;
font-size: 19px;
}
.content-section ,.content .button {
text-align: center;
}
.content-section .content .button a {
padding: 9px 30px;
}
.content-section .social {
text-align: center;
}
}