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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
@import "../sass/h5bp";
@import "./_colours";
@import "../sass/mixins";
@import "compass";
@import url(http://fonts.googleapis.com/css?family=Lato:300,700);
$body-font: 'Lato', sans-serif !default;
$meta-font: 'Lato', sans-serif !default;
$heading-font: 'Lato', sans-serif !default;
@import "../sass/base";
body {
font-weight: 300;
}
input {
background-color: $alt-background;
}
#front-main {
h2 {
font-weight: 300;
}
#postcodeForm {
div {
border: 0px;
background: $primary_b;
select#clinic,
input#pc {
background-color: $alt-background;
}
select#clinic {
border: 0;
border-radius: 0px;
display: table-cell;
line-height: 1.5em;
padding: 0.25em 2%;
}
.select2-container,
select#clinic,
input#pc {
border: 0px;
border-radius: 0px;
box-shadow: none;
width: 80%;
}
input#sub {
background-color: $button-color;
border: 1px solid $alt-background;
border-radius: 5px;
color: white;
margin-left: 5px;
}
input#show_report {
width: 14%;
margin-left: 5px;
}
.select2-container {
display: inline-block;
text-align: left;
a {
line-height: 1.5em;
padding: 0.25em 2%;
}
}
.select2-display-none {
display: none;
}
}
}
}
#site-logo {
background: none;
text-indent: 0px;
text-transform: uppercase;
width: auto;
margin-right: 80px;
@media( min-width: 350px ) {
margin-top: 0.5em;
}
a {
color: white;
&:hover {
text-decoration: none;
}
}
p {
font-weight: 300;
margin-bottom: 0em;
}
.orange {
color: $button-color;
font-weight: bold;
}
#brought-to-you {
display: none;
}
}
button.green-btn,
input.green-btn,
.green-btn {
background: none;
background-color: $button-color;
border: 1px solid $alt-background;
border-radius: 5px;
color: white;
}
button.green-btn:hover,
input.green-btn:hover,
.green-btn:hover {
background: none;
background-color: darken( $button-color, 10% );
border: 1px solid $alt-background;
}
|