-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
156 lines (141 loc) · 2.42 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
body{
font-family: 'Poppins', sans-serif;
}
/* center */
.center{
height: 450px;
}
.center img{
width: 100%;
height: 300px;
}
.center p{
font-size: 35px ;
color: black;
font-weight: bold;
text-shadow: 5px 4px 35px gray;
}
.center span{
font-weight: lighter;
}
@media (max-width: 990px) {
.center p {
font-size: 24px;
margin-bottom: 0px;
}
}
@media (max-width: 750px) {
.center p {
font-size: 24px; /* Further reduce font size for smaller screens */
margin-bottom: 0px;
}
}
@media (max-width: 767px) {
.center img {
height: 150px;
}
}
@media (max-width: 767px) {
.products {
margin-top: 0;
}
}
/* products */
.products h1{
font-size: 45;;
text-transform: uppercase;
text-align: center;
}
.products .pic{
height: 150px;
width: 150px;
transition: 0.5s;
}
.products .pic img{
height: inherit;
width: inherit;
}
.colp{
border-radius: 10px;
cursor: pointer;
border: 4px solid ;
transition: 0.5s;
}
.colp a{
color: black;
text-decoration: none;
}
.colp:hover{
border-top-right-radius: 45px;
border-bottom-left-radius:45px ;
box-shadow: 10px 10px 20px;
transform: scale(1.1);
}
@media (max-width: 760px) {
.colp {
margin-bottom: 20px;
}
}
/* feature */
.feature{
padding: 45px;
background-color: rgb(4, 4, 96);
}
.feature h2{
font-size: 45px;
padding-bottom: 25px;
text-align: center;
color: white;
text-transform: uppercase;
}
.colf{
background-color: white;
text-align: center;
border-radius: 18px;
box-shadow: 5px 4px 22px;
}
.feature .icon{
padding: 15px;
font-size: 45px;
color: blue;
}
@media (max-width: 992px) {
.colf {
margin-bottom: 20px;
}
}
/* testimonials */
.circle{
height: 150px;
width: 150px;
border: 1px solid;
border-radius: 100px;
}
#testi h1{
padding-bottom: 25px;
font-size: 45px;
text-transform: uppercase;
text-align: center;
}
#testi img{
border-radius: 100px;
height: inherit;
width: inherit;
}
.colt{
border-radius: 25px;
border: 4px solid black;
box-shadow: 5px 4px 15px black;
}
.stars .far{
color: green;
}
.fas{
color: green;
}
@media (max-width: 770px) {
.colt {
margin-bottom: 20px;
}
}