-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.css
More file actions
92 lines (78 loc) · 1.34 KB
/
card.css
File metadata and controls
92 lines (78 loc) · 1.34 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
body {
background-color: hsl(47, 88%, 63%);
font-family: "figtree", serif;
font-size: 16px;
}
.container {
width: 384px;
height: 522px;
border-radius: 20px;
margin: 252px auto;
background-color: hsl(0, 0%, 100%);
box-shadow: 10px 10px 5px 0px rgb(5, 0, 0);
border: 1px solid black;
}
.img1 img {
width: 336px;
height: 203px;
margin: 20px auto;
margin-left: 25px;
border-radius: 15px;
}
.Sec-part {
align-items: center;
margin-left: 22px;
}
.Sec-part button {
background-color: hsl(47, 88%, 63%);
border: none;
width: 80px;
height: 25px;
border-radius: 5px;
}
.fade {
opacity: 0.5;
}
.Sec-2 img {
width: 32px;
height: 32px;
margin-left: 15px;
margin-top: 25px;
}
span {
font-weight: 800;
margin-left: 10px;
}
button {
font-weight: 700;
}
@media screen and (max-width: 600px) {
body {
width: 375px;
height: 812px;
/* font-size: 16px; */
}
.container {
/* display: grid; */
width: 327px;
height: 501px;
/* position: relative; */
}
.img1 img {
width: 279px;
height: 200px;
border-radius: 20px;
margin-top: 12px;
}
.Sec-part {
width: 279px;
height: 173px;
}
h1 {
width: 279px;
height: 30px;
}
.fade {
font-size: 14px;
}
}