-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
83 lines (70 loc) · 1.42 KB
/
custom.css
File metadata and controls
83 lines (70 loc) · 1.42 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
/* Landing page overlay color and opacity tweaks */
header.fullscreen-element .overlay:before,
.image-divider.overlay:before {
opacity: 0.6;
background-color: #000;
}
/* Help / Sponsor section link tweaks */
.blog-snippet-2 a {
color: #428bca;
}
.blog-snippet-2 li .icon {
text-align: center;
padding-right: 8px;
}
.blog-snippet-2 li .icon i {
margin-top: 5px;
position: static;
}
.blog-snippet-2 span a {
color: #333333;
display: inline;
}
/* Team image tweaks */
img.team-image {
width: 172px;
height: 172px;
border-radius: 50%;
}
/* Famous quote overlay tweak */
.overlay:before {
opacity: 0.6;
background-color: #000;
}
/* Logo width fix */
.logo.logo-wide {
max-width: 225px;
}
/* Header border bottom */
.row.nav-menu {
padding-bottom: 5px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
/* Header menu top positioning */
.nav-menu .menu {
top: 8px;
}
/* Header external links positioning */
.nav-menu .social-icons
{
padding-top: 6px;
}
/* Workarounds for the JavaScript vertical align / fullscreen height functions */
header .container.align-vertical-smart {
top: 0;
bottom: 0;
right: 0;
left: 0;
position: absolute;
height: 230px;
margin: auto;
}
.fullscreen-element-smart {
height: 100vh;
}
/* Fix for too much padding in the header navigation menu on mobile */
@media only screen and (max-width: 767px) and (min-width: 320px) {
.nav-menu {
padding-top: 17px;
}
}