-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
74 lines (67 loc) · 1.42 KB
/
styles.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
// Import Bootstrap Icons
@import "~bootstrap-icons/font/bootstrap-icons.css";
// Override Bootstrap variables
$enable-negative-margins: true;
// Import Bootstrap SCSS
@import "~bootstrap/scss/bootstrap";
// Custom SCSS for feature component with Bootstrap icon
.feature {
display: inline-flex;
align-items: center;
justify-content: center;
height: 4rem;
width: 4rem;
font-size: 2rem;
}
// sme logo link colours
a {
color: #5d00c5;
text-decoration: none;
}
a:hover {
color: #c126f8;
text-decoration: none;
}
// white for icons
.iconlink a {
color: #ffffff;
text-decoration: none;
}
.iconlink a:hover {
color: #5d00c5;
text-decoration: none;
}
.simplelink a {
color: #000000;
text-decoration: none;
}
.simplelink a:hover {
color: #5d00c5;
text-decoration: none;
}
// only display carousel position indicators on mouseover
.carousel .carousel-indicators {
visibility: hidden;
}
.carousel .carousel-control-prev {
visibility: hidden;
}
.carousel .carousel-control-next {
visibility: hidden;
}
.carousel:hover .carousel-indicators {
visibility: visible;
}
.carousel:hover .carousel-control-prev {
visibility: visible;
}
.carousel:hover .carousel-control-next {
visibility: visible;
}
// add partially opaque background to carousel control buttons
.carousel .carousel-control-prev {
background-color: rgba(0, 0, 0, 0.3);
}
.carousel .carousel-control-next {
background-color: rgba(0, 0, 0, 0.3);
}