-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.css
More file actions
93 lines (89 loc) · 1.72 KB
/
Copy pathevents.css
File metadata and controls
93 lines (89 loc) · 1.72 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
.hero_events {
margin-bottom: 1.5rem;
}
.hero_events .hero-right {
margin-bottom: -1rem;
}
.hero_events .hero-right img {
margin: -15% -3% 0 -5%;
width: 105%;
}
.hero_events .h1 {
font-size: min(2rem, 9vw);
line-height: min(2.4rem, 11vw);
font-weight: 700;
}
.hero_events .hero-description {
font-size: 1.07rem;
line-height: 1.7rem;
font-weight: 500;
color: rgba(0,0,0,1);
margin-top: 0.5rem;
}
/* replace image on mobile */
@media (max-width: 680px) {
.hero_events .hero-right {
position: absolute;
bottom: 2rem;
right: 2rem;
width: 7.4rem;
height: 8rem;
overflow: hidden;
max-width: none;
flex: none;
}
.hero_events .hero-right img,
.hero_events .hero-right picture img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: bottom right;
margin-top: 0;
opacity: 0.9;
}
}
.events-room {
font-size: 0.94rem;
font-style: italic;
}
@media (max-width: 480px) {
.hero_events .h1 {
font-size: min(1.7rem, 9vw);
line-height: min(2.1rem, 11vw);
font-weight: 700;
margin-bottom: 1rem;
}
.events-days {
display: block;
line-height: 1.35rem;
}
.events-room {
margin-left: 0rem;
font-size: 0.94rem;
margin-bottom: 0.4rem;
display: block;
}
}
/* DISCORD BUTTON */
.btn-discord {
display: inline-block;
background-color: rgba(0,0,0,0.7);
color: #fff;
text-decoration: none;
font-weight: 700;
font-size: 1rem;
padding: 0.4rem 2rem;
border-radius: 0.3rem;
margin-top: 0.35rem;
margin-bottom: 0.3rem;
min-width: 10rem;
text-align: center;
}
.btn-discord:hover {
background-color: rgba(0,0,0,0.8);
}
@media (max-width: 520px) {
.btn-discord {
min-width: calc(100% - 1.7rem);
}
}