-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
57 lines (48 loc) · 969 Bytes
/
style.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
#img_1{
width: 50px;
height: 50px;
}
.mb-0{
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
#img11{
width: 150px;
height: 150px;
margin-left: 60px;
margin-top: 20px;
}
.card {
border:none;
padding: 10px 50px;
}
.card::after {
position: absolute;
z-index: -1;
opacity: 0;
-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:hover {
transform: scale(1.02, 1.02);
-webkit-transform: scale(1.02, 1.02);
backface-visibility: hidden;
will-change: transform;
box-shadow: 0 1rem 3rem rgba(0,0,0,.75) !important;
}
.card:hover::after {
opacity: 1;
}
.card:hover .btn-outline-primary{
color:white;
background:#007bff;
}
#card-standerd{
background-image: linear-gradient(#11998e, #38ef7d);
}
#btn-sub{
width: 100%;
}
#home-t{
margin-top: 5em;
}