-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbelfast-city-council.scss
More file actions
80 lines (66 loc) · 1.83 KB
/
belfast-city-council.scss
File metadata and controls
80 lines (66 loc) · 1.83 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
$govuk-font-family: -apple-system,BlinkMacSystemFont,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif; // Override font as so not to use New Transport
@import "application";
// CUSTOM BRANDING
// Use the variables below to control the style
// Make sure banner colours meet minimum colour contrast levels
$custom-banner-colour: #ffffff;
$custom-banner-border-colour: #008996;
$custom-text-colour: #ffffff;
$logo-image-height: 2em;
.govuk-template--rebranded {
.custom-branding {
@if $logo-image-height != null {
.custom-branding-image {
max-height: $logo-image-height;
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
width: 100%;
}
}
}
.govuk-header {
background-color: $custom-banner-colour;
border-bottom: 10px solid #ffffff;
}
.govuk-header__logo {
margin-bottom: 10px;
padding-top: 0;
padding-bottom: 0;
}
.govuk-header__service-name {
margin: 0 0 15px;
color: $custom-text-colour;
}
.govuk-header__link{
&:link,
&:visited {
color: $custom-text-colour;
}
}
.govuk-header__link--homepage {
&:hover,
&:active {
border-bottom: none;
margin-bottom: 0;
}
&:not(:focus) {
background-color: transparent;
}
}
.govuk-header__container {
border-bottom: 10px solid $custom-banner-border-colour;
margin-bottom: -10px;
padding-top: 10px;
}
@include govuk-media-query($from: tablet) {
.govuk-header__content {
width: 66%;
vertical-align: bottom;
margin-bottom: 7px;
}
}
.govuk-button {
padding: 7px 15px 6px;
padding: .368421053em .842105263em .315789474em;
}
}
}