-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
167 lines (149 loc) · 2.69 KB
/
Copy pathstyle.css
File metadata and controls
167 lines (149 loc) · 2.69 KB
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
body {
background-color: white;
font-family:Arial, Helvetica, sans-serif;
margin: 0%;
}
header {
width: 100%;
background-color: #E4E4E4;
border-bottom: 4px solid #627f89;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo img {
width: 110px;
margin-left: 50px;
}
.logo img:hover {
transform: scale(.9);
transition: all .4s ease-in-out;
}
nav ul {
list-style-type: none;
padding: 30 px;
display: flex;
margin-right: 40px;
}
nav ul li {
padding-right: 50px;
}
nav ul li a {
text-decoration: none;
font-size: larger;
color: rgb(159, 57, 5);
}
nav ul li a:hover {
color: #BF9270;
text-decoration-line: underline;
text-underline-offset: 10px;
}
#hero img {
width: 100%;
}
#about {
background-image: url(asset/052dd9911977b1b8b8e64a579b22e59e.png)
background-attachment: fixed;
background-repeat: no-repeat;
background-size: contain;
height: 75vh;
padding: 40px;
background-color: #f0f1f7;
}
#about h2 {
margin-top: 50px;
width: 50%;
padding-left: 40px;
color: #000;
}
#about p {
width: 50%;
padding-left: 40px;
line-height: 1.7em;
color: #000;
}
#product {
width: 100%;
background-color: #ffffff;
text-align: center;
margin: 40px;
}
#product h2 {
text-align: center;
color: #344CB7;
}
.card-product {
width: 95%;
margin: 30px auto;
display: flex;
flex-wrap: wrap;
gap: 25px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
text-align: center;
font-family: arial;
}
.card:hover {
transform: scale(.9);
transition: all .4s ease-in-out;
}
.price {
color: grey;
font-size: 22px;
}
.card button {
border: none;
outline: 0;
padding: 12px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
.card button:hover {
opacity: 0.7;
}
#contact {
width: 100%;
display: flex;
padding: 30px;
border: 1px solid #FFEB00;
}
.contact-text {
align-items: center;
padding-left: 70px;
width: 50%;
}
.contact-text h4 {
color: #344CB7;
}
.contact-text p {
font-size: xx-large;
}
.contact-text button {
padding: 8px 35px;
background-color: #b5bfea;
border: none;
}
.contact-text button:hover {
background-color: #FFEB00;
color: #344CB7;
box-shadow: 3px 3px 20px #344CB7;
}
.contact-image {
width: 50%;
}
.contact-image img {
width: 60%;
}
footer p {
text-align: center;
margin-top: 100px;
padding: 30px;
background-color: #BF9270;
}