-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (75 loc) · 1.3 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
body {
background-color: rgb(255, 0, 0);
}
h1 {
color: #F89D13
}
header {
text-align: center;
background-color: rgb(255, 0, 0);
border-radius: 40px 0 40px 0;
}
img {
width: 40%;
border-radius: 70%;
border: 6px solid #5e0000;
}
button {
display: block;
margin: 70px auto;
padding: 6px 25px;
background-color: #9e0b00;
border: none;
border-radius: 15px 0 15px 0;
transition: all ease-in-out 0.4s;
}
button:hover {
background-color: #4b0101;
color: #006BFF;
transform: scale(.8);
transition: all .3s ease-in-out;
}
.about {
width: 90%;
margin: 40px auto;
display: flex;
}
.left-about img {
width: 60%;
border-radius: 50px;
box-shadow: 2px 2px 10px gold;
}
.right about h2 {
color:#9e0b00
}
.right-about {
margin: auto 0;
}
#product {
width: 95%;
margin: 40px auto;
text-align: center;
}
#product-h2 {
color: #fbff00a6;
}
.product-card {
padding: 20px;
border: 1px dashed black;
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.card {
width: 350px;
border: 1px solid black;
}
.card img {
width: 100%;
}
footer {
text-align: center;
padding: 20px;
background-color: darkred;
color: beige;
}