-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom6.css
110 lines (94 loc) · 1.76 KB
/
custom6.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
/* styles.css */
body {
font-family: Arial, sans-serif;
/* background-color: #f2f2f2; */
background-color: white;
padding: 20px;
background-image: url("/static/assets/images/7.jpg");
background-repeat: repeat-y;
/* background-size: cover; */
background-size: 100% 70%
}
#img-show{
width:340px;
height:300px;
margin-left: 15px;
margin-top: 15px;
border-radius: 2%;
}
.card-content h6{
margin-top: 0;
margin-bottom: 10px;
font-size: 15px;
font-weight:normal;
color: black;
}
h1 {
text-align: center;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.card {
width: 30%;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.card img {
width: 100%;
height: auto;
}
.card-content {
padding: 10px;
}
.card-content h2 {
margin-top: 0;
margin-bottom: 10px;
}
.card-content p {
margin: 0;
}
.msg
{
background-color: crimson;
color:black;
}
.text
{
margin: 20px;
}
.buy-button {
background-color: #5cb85c;
color: #fff;
border: none;
padding: 6px 14px;
font-size: 20px;
border-radius: 4px;
cursor: pointer;
}
.buy-button:hover {
background-color: #4cae4c;
}
.text1
{
margin: 20px;
}
a
{
color: black;
}
footer
{
background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
color: white; /* White text color */
text-align: center;
padding: 10px;
}
footer p, footer a {
color: white; /* Set the text color of paragraphs and links within the footer as white */
}