-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
192 lines (162 loc) · 3.16 KB
/
style.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
*{
margin: 0;
padding: 0;
}
body{
background-color: #F1F1F1;
}
a:link {
color: white;
text-decoration: none;
}
/* visited link */
a:visited {
color: white;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: white;
text-decoration: none;
}
/* selected link */
a:active {
color: white;
text-decoration: none;
}
a:hover{
color:aquamarine;
}
.heading{
padding: 1em 0;
font-size: 2.5em;
color: #4CAF50;
}
header{
background-color: #4CAF50;
text-align: center;
padding: 1em;
font-family: Segoe UI;
color: white;
}
.main{
background-color: #F1F1F1;
margin: 1em auto;
text-align: center;
width: 80%;
font-family: Verdana;
padding: 1em 0;
}
input{
margin:1em 0;
border: none;
padding: 0.5em;
text-align: center;
border-radius: 1em;
}
button{
padding: 0.5em;
border: none;
background-color: #4CAF50;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: white;
font-size: large;
border-radius: 1em;
}
button:hover{
box-shadow:
0 2.8px 2.2px rgba(0, 0, 0, 0.034),
0 6.7px 5.3px rgba(0, 0, 0, 0.048),
0 12.5px 10px rgba(0, 0, 0, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072),
0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12)
}
ul{
display: flex;
justify-content: space-evenly;
padding: 1em;
list-style: none;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.container{
margin: 0 auto;
text-align: center;
background-color: white;
}
.container1{
margin: 0 auto;
text-align: center;
background-color: #F1F1F1;
}
li{
list-style: none;
cursor: pointer;
padding: 0.5em;
}
.benefit{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 1.5em;
}
#green{
font-family: 'Times New Roman', Times, serif;
margin: 1em 0;
font-weight: bolder;
font-size: xx-large;
color: green;
text-transform: uppercase;
}
img{
max-width: 60%;
}
.container-pro{
margin : 0 auto;
display: flex;
justify-content: space-between;
width: 80%;
padding:1em 0;
}
.img-container{
max-width: 55%;
/* height: 500px; */
object-fit: cover;
}
.p-container{
margin : 1em 0;
text-align: right;
width: 40%;
font-size: 1.4em;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
footer{
background-color: #4CAF50;
text-align: center;
padding: 24px;
font-family: Segoe UI;
color: white;
}
@media(max-width:840px){
.header-img{
min-width: 90%;
}
.container-pro{
flex-direction: column;
}
.img-container{
width : 100%;
height: 100%;
margin:0 auto;
min-width: 90%
}
.p-container{
text-align: center;
width: 100%;
font-size: 1em;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.benefit{
display: flex;
flex-direction: column;
font-size: 1em;
}
}