-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
154 lines (129 loc) · 2.28 KB
/
about.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--background-color: white;
--color: black;
}
body {
font-family: sans-serif;
}
.dark-mode .popup-content{
color: black;
}
/*********************This is the css code for the page************************* */
.container {
width: 100%;
display: flex;
}
.leftcontainer {
width: 50%;
}
.rightcontainer {
position: relative;
width: 50%;
}
#su {
min-width: 363px;
margin: 2% 10% 2% 8%;
line-height: 1.5;
font-size: 18px;
}
h2 {
margin: 6% auto 6% 8%;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#review {
margin: 8% 8%;
}
.re_button {
background-color: #3fc833;
border: none;
padding: 20px;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
}
.re_button:hover {
text-decoration: underline;
color: #fff;
background-color: #46a049;
}
#image {
position: absolute;
right: 10%;
top: 2%;
}
#contact {
position: absolute;
right: 15%;
transform: translateX(-50%);
bottom: 0;
}
.contact_us {
background-color: #3fc833;
border: none;
color: black;
padding: 15px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 25px;
}
.contact_us:hover {
text-decoration: underline;
/* color: #e2dfdf95; */
color: #fff;
background-color: #46a049;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
}
/* this is for contact us pop up */
.popup-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.popup-content h2 {
margin-top: 0;
}
.popup-content p {
margin: 0;
}
#close {
background-color: #3fc833;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
font-size: 16px;
margin: 12px 70px;
cursor: pointer;
border-radius: 25px;
}
@media (max-width: 768px) {
.container {
display: flex;
flex-direction: column;
}
.leftcontainer {
width: 100%;
}
.rightcontainer {
width: 100%;
}
}