-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutcard.css
89 lines (78 loc) · 1.21 KB
/
aboutcard.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
*
{
margin: 0;
padding: 0;
box-sizing: border-box !important;
}
html, body
{
background-color: #f2f2f2;
}
.slider
{
width: 100vw;
max-width: 1150px;
display: flex;
margin: 0 !important;
}
.card
{
background-color: #fff;
width: 100%;
border: 1px solid #ddd !important;
}
.card .img
{
width: 100%;
padding: 2px;
}
.slider .card .content
{
padding: 10px;
}
.card-title
{
text-align: center;
font-size: 25px;
font-weight: 600;
}
.card-subtitle
{
font-size: 20px;
font-weight: 600;
line-height: 20px;
text-align: center;
text-transform: capitalize;
color: #e74c36;
}
.content p
{
align-content: center;
align-items: center;
text-align: center;
padding: 0 20px !important;
}
.content .btn
{
display: block;
text-align: center;
margin: 0 20%;
margin-top: 0 !important;
}
.content .btn button
{
background-color: #e74c36;
color: #fff;
border:none;
outline: none;
font-size: 17px;
border-radius: 5px;
padding: 5px 8px;
margin: auto;
cursor: pointer;
transition: 0.2s;
}
.content .btn button:hover
{
transform: scale(0.9);
}