-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (53 loc) · 1.08 KB
/
style.css
File metadata and controls
65 lines (53 loc) · 1.08 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
body {
background: #A1FFCE;
background: -webkit-linear-gradient(to right, #FAFFD1, #A1FFCE);
background: linear-gradient(to right, #FAFFD1, #A1FFCE);
}
.profile-image {
width: 7em;
}
.card-profile {
border-radius: 10px;
}
.card-event {
border-radius: 10px;
}
.card-event:hover {
transform: scale(1.02);
}
.event-posted-time {
font-size: 0.7rem;
}
.no-border {
border: none;
}
.profile-modal-fadeIn {
-webkit-animation-name: profile-modal-fadeIn;
animation-name: profile-modal-fadeIn;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@keyframes profile-modal-fadeIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.profile-modal-dialog {
margin: 0;
}
.profile-modal-header {
border: none;
background-color:whitesmoke;
}
.btn-danger {
margin: auto;
}