-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (98 loc) · 1.67 KB
/
style.css
File metadata and controls
120 lines (98 loc) · 1.67 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
114
115
116
117
118
119
120
.profile-image {
width: 7em;
}
.card-profile {
border-radius: 10px;
}
.card-event {
border-radius: 10px;
}
.card-event:hover {
transform: scale(1.02);
}
.top-line {
height: 0.25rem;
}
.bg-gradient2 {
background: linear-gradient(
135deg,
rgba(0, 97, 215, 1) 0%,
rgba(0, 200, 255, 1) 100%
);
}
h2,
p {
display: flex;
align-items: center;
justify-content: space-around;
}
#inner:hover {
cursor: pointer;
padding: 50px;
background-color: linear-gradient(
135deg,
rgba(0, 97, 215, 1) 0%,
rgba(0, 200, 255, 1) 100%
);
}
#inner {
transition: background 0.2s ease, padding 0.8s linear;
}
.landing-page-button {
border-radius: 9999px;
justify-content: center;
}
.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;
}
.card-body {
overflow: auto;
}
.profile-modal-header {
border: none;
background-color: whitesmoke;
}
.subtitle {
font-size: 20px;
}
.heart {
width: 1.5em;
height: 1.5em;
}
.error-message {
line-height: 0;
color: red;
padding-left: 12.5rem;
}
.input-upload-file {
margin-top: 1em;
}
.upload-file {
margin: auto 1em auto 0em;
}