-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard-acting.css
More file actions
113 lines (93 loc) · 1.84 KB
/
card-acting.css
File metadata and controls
113 lines (93 loc) · 1.84 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
#card-acting{
color: #ffff;
align-items: center;
width: 100%;
}
.container-card-acting{
display: flex;
flex-direction: column;
margin: auto;
padding: 40px 32px 40px 32px;
gap: 48px;
}
.card-body-acting{
height: 271px;
background: #212426;
border: 1px;
border-radius: 20px;
}
#card-acting h1{
font-weight: 600;
font-size: 38px;
line-height: 150%;
text-align: center;
height: 72px;
margin-top: 140px;
margin-bottom: 40px;
}
.card-body-acting p{
justify-items: center;
font-weight: 400;
font-size: 18px;
line-height: 150%;
margin-top: 112px;
margin-left: 28px;
height: 75px;
width: 300px;
gap: 60px;
}
.card-body-acting img{
width: 80px;
height: 80px;
margin: 28px;
gap: 20px;
}
@media (min-width: 768px){
#card-acting{
justify-content: center;
}
.container-card-acting{
display: flex;
flex-direction: row;
justify-content: center;
padding: 112px 64px 112px 64px;
gap: 40px;
}
.card-body-acting{
height: 271px;
width: 100%;
height: 316px;
}
.card-body-acting p{
margin-top: 125px;
height: 58px;
width: 185px;
font-size: 18px;
}
}
@media (min-width: 1300px){
#card-acting{
justify-content: center;
width: 100%;
}
.container-card-acting{
display: flex;
flex-direction: row;
justify-content: center;
padding: 40px 64px 80px 64px;
gap: 88px;
}
.card-body-acting{
height: 400px;
width: 100%;
}
.card-body-acting p{
margin-top: 160px;
height: 93px;
font-size: 25px;
}
.card-body-acting img{
width: 120px;
height: 120px;
}
}