blob: 6b8add5d7e7d8815fe0e1fd96ca68a049806fd81 (
plain)
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
|
/* Base stylesheet for FixMyStreet look
*
* In a mobile first way, this contains the look of the site, and a basic
* layout for browsers that can't handle media queries. Baseline grid of 1.5em.
*/
$image-sprite: '/cobrands/fixamingata/images/sprite.png';
@import "../sass/h5bp";
@import "./_colours";
@import "../sass/mixins";
@import "compass";
@import "../sass/base";
#site-header {
@include background(linear-gradient(#000, #ccc 10%, #ccc 90%, #000));
}
#site-logo {
width: 185px;
margin-top: 8px;
margin-left: 10px;
background: url('/cobrands/fixamingata/images/fms-logo.png') no-repeat;
}
#report-cta {
font-size: 0.8em;
margin-top: -0.25em;
border-color: #999;
color: #000;
padding-bottom: 0.2em;
padding-top: 0.5em;
&:hover, &:focus {
background-color: #bbb;
}
}
#front-main {
a#geolocate_link {
font-size: 0.9em;
}
}
.description_tips {
h4 {
margin: 1em 0 0.5em; /* Jon added some margin-top here! */
}
}
|