-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (78 loc) · 1.42 KB
/
style.css
File metadata and controls
84 lines (78 loc) · 1.42 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
*{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.box-model{
border: 5px solid blueviolet;
padding: 20px;
margin: 20px;
/* display: none; */
}
.card{
/* border:2px solid blueviolet; */
box-shadow: 0 0 10px lightgray;
width: 320px;
padding:12px;
margin: 8px;
border-radius: 16px;
}
.card-img{
width: 100%;
border-radius: 16px;
}
.btn{
background-color: black;
color:white;
padding: 7px 18px;
text-decoration: none;
border-radius: 66px;
display: inline-block;
margin: 4px 0 4px 0;
}
.user{
height: 86px;
width: 86px;
border-radius: 50%;
}
.demo{
height: 60px;
width: 60px;
border-radius: 12px;
background-color: white;
animation-name: demo;
animation-duration: 1s;
animation-iteration-count: 3;
animation-direction: alternate;
}
@keyframes demo{
from{
background-color: white;
}
to{
/* background-color: blueviolet; */
margin-left: 420px;
transform: rotate(360deg);
height: 20px;
width: 20px;
}
}
.animate-image {
height: 120px;
display: none;
}
.animate-image:hover{
animation-name: animate-image;
animation-duration: 2s;
}
@keyframes animate-image{
from{
height: 120px;
}
to{
height: 200px;
}
}
.flex-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
}