-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.scss
82 lines (66 loc) · 1.37 KB
/
custom.scss
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
/* start custom scss snippet */
// Hero Fix - Manually Fix Scaling for Article Header and Overlay Excerpt
.herofix {
& .article__header {
padding: 0 3rem;
// max-width: 950px;
}
& .overlay__excerpt {
padding: 0 3rem;
// max-width: 950px;
}
}
// Jumbotron and Article "Page Boxes"
.articlepage {
padding: 0 3rem;
max-width: 950px;
backdrop-filter: blur(25px);
}
// Div for Registration Button
.regbuttondiv {
height: 90px;
max-width: 300px;
}
// Registration Button
.regbutton {
background: linear-gradient(to right, rgba(85, 185, 215, 0.75), rgba(115, 95, 210, 0.75));
}
// Actions Buttons
.actionsdiv {
max-width: 300px;
}
// Carousel Button Fix
.carouselbuttonfix {
position: fixed;
z-index: 10;
}
// Carousel Fix
.carouselfix {
top: 0;
& .carousel-inner {
display: flex;
align-items: center;
width: 100%;
height: 100%;
overflow: hidden;
}
& .carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
top: 0;
position: fixed;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
& img {
position: fixed;
object-fit: contain;
}
& button {
position: fixed;
z-index: 100;
}
}
/* end custom scss snippet */