-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.scss
104 lines (88 loc) · 1.83 KB
/
theme.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
THEME STYLES
*/
// Import Bootstrap. Place any overrides before the import.
$green: #4BFD9F;
$primary: $green;
@import "inc/bootstrap/scss/bootstrap.scss";
// Jarallax CSS
.jarallax {
position: relative;
z-index: 0;
}
.jarallax > .jarallax-img {
position: absolute;
object-fit: cover;
/* support for plugin https://github.com/bfred-it/object-fit-images */
font-family: 'object-fit: cover;';
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
// Error 404 Styles
.error404 {
height: 100%;
min-height: 100%;
//background-image: url('assets/images/error404-bg.png');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: $gray-100;
@include media-breakpoint-down(xs) {
background: transparent;
}
.row {
height: 100vh;
}
.error404-content {
padding: 2rem 0 2.75rem 0;
background-color: #fff;
border-radius: 4px;
border: 3px solid #CDCDCD;
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
@include media-breakpoint-down(xs) {
background: transparent;
border: none;
box-shadow: none;
}
h1 {
font-size: 8rem;
font-family: $font-family-sans-serif;
color: $primary;
font-weight: 900;
line-height: 0.9;
margin: 0 0 0.25rem 0;
@include media-breakpoint-down(sm) {
font-size: 6rem;
}
}
h2 {
font-size: 1.75rem;
font-family: $font-family-sans-serif;
color: $gray-600;
line-height: 1;
margin: 0 0 2rem 0;
font-weight: 900;
@include media-breakpoint-down(sm) {
font-size: 1.5rem;
}
}
p {
font-family: $font-family-sans-serif;
font-style: italic;
font-size: 0.95rem;
color: #595959;
font-weight: 500;
padding: 0 1.75rem;
margin: 0 0 2rem 0;
}
.btn-primary {
font-weight: 700;
}
}
}
.method-full-width-container {
max-width: 1300px;
}