-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (47 loc) · 1.12 KB
/
styles.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
* {
box-sizing: border-box;
margin: 0;
padding: 0; }
/* for the body */
body {
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;}
.container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
/* very basic for the card */
.card {
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;}
.card-image {
width: 100%;
height: auto;}
.card-title {
font-size: 1.5em;
margin-bottom: 10px;
margin-left: 8px;}
/* for title of the prfume */
.card-description {
font-size: 1em;
margin-bottom: 15px;
margin-left: 8px;}
/* for description of the perfume */
.card-button {
display: inline-block;
padding: 10px 15px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
margin-left: 100px;
margin-bottom: 8px;}
/* for button hover */
.card-button:hover {
background-color: #0056b3;
}
/* thats all */