-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathevents.css
123 lines (109 loc) · 1.97 KB
/
events.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
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
121
122
123
/* *{
background-color: rgb(75, 110, 126);
} */
/* @media screen and (max-width:) {
} */
html {
/* width: 120vw!important; */
}
.cards-list {
z-index: 0;
width: 100%;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
/* */
a.coming_soon_a {
background-color: transparent !important;
color: #0891f8 !important;
width: 100% !important;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
grid-gap: 20px;
}
.card {
display: grid;
grid-template-rows: max-content 200px 1fr;
}
.card img {
object-fit: cover;
width: 100%;
height: 100%;
}
/* */
div.register_now {
position: relative;
}
div.register_now a {
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%, 0);
background-color: #0891f8;
padding: 7px 20px;
font-size: 20px;
color: white;
border-radius: 5px;
}
div.register_now h3 {
bottom: 0;
left: 50%;
transform: translate(-50%, 0);
font-size: 20px;
color: #0891f8;
}
@media screen and (min-width: 1300px) {
div.after638 {
display: none;
}
}
@media screen and (max-width: 1300px) {
div.before1300 {
display: none;
}
}
.card {
text-align: center;
margin: 30px auto;
width: 300px;
height: 300px;
border-radius: 60px;
box-shadow: 2px 2px 3px 1px #0891f8, -1px -1px 3px 1px #0891f8 !important;
transition: 0.4s;
}
.card .card_image {
width: inherit;
height: inherit;
border-radius: 40px;
}
.card .card_image img {
width: inherit;
height: inherit;
border-radius: 40px;
object-fit: cover;
}
.card .card_title {
text-align: center;
border-radius: 0px 0px 40px 40px;
font-family: sans-serif;
font-weight: bold;
font-size: 30px;
margin-top: -350px;
height: 40px;
opacity: 0.9;
}
.title-white {
color: white;
}
.title-black {
color: black;
}
.card 2 @media all and (max-width: 500px) {
.card-list {
/* On small screens, we are no longer using row direction but column */
flex-direction: column;
}
}