adopt-a-hydrant/public/stylesheets/main.css

84 lines
1.1 KiB
CSS
Raw Normal View History

2011-02-23 22:24:08 +00:00
html {
height: 100%;
}
body {
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
height: 100%;
margin: 0px;
padding: 0px;
}
2011-03-01 04:13:31 +00:00
h1, h2, h3, h4, h5, h6 {
2011-03-01 06:42:16 +00:00
font-family: Helvetica, Arial, sans-serif;
2011-03-01 04:13:31 +00:00
text-align: center;
}
2011-02-23 22:24:08 +00:00
#map_canvas {
float: left;
height: 100%;
2011-02-25 19:27:21 +00:00
width: 75%;
2011-02-23 22:24:08 +00:00
}
#sidebar {
float: left;
2011-02-25 19:59:25 +00:00
height: 100%;
2011-02-25 19:27:21 +00:00
width: 25%;
2011-02-23 22:24:08 +00:00
overflow: hidden;
}
2011-02-25 19:59:25 +00:00
form {
2011-02-25 19:41:54 +00:00
width: 90%;
2011-02-25 19:59:25 +00:00
margin: auto;
}
2011-03-01 04:13:31 +00:00
#sidebar #tagline {
text-align: center;
2011-02-25 19:59:25 +00:00
padding: 10px;
2011-03-01 04:13:31 +00:00
background: #c33;
color: #fff;
}
#sidebar #logos {
text-align: center;
}
#sidebar #logos img {
padding: 10px 5px 0 5px;
}
#sidebar img#hydrant-in-snow {
width: 100%;
2011-02-25 19:41:54 +00:00
}
label, input {
2011-03-01 04:13:31 +00:00
white-space: nowrap;
2011-02-25 19:41:54 +00:00
text-align: left;
2011-02-23 22:24:08 +00:00
}
2011-03-01 06:49:17 +00:00
input, select, option, button, input[type="submit"] {
2011-03-01 04:13:31 +00:00
display: block;
2011-02-25 19:41:54 +00:00
margin-bottom: 10px;
2011-02-23 22:24:08 +00:00
font-size: 1.0em;
2011-02-25 19:41:54 +00:00
width: 100%;
2011-02-23 22:24:08 +00:00
}
2011-03-01 04:13:31 +00:00
input[type="radio"], input[type="checkbox"] {
display: inline;
width: auto;
margin-right: 10px;
}
button, input[type="submit"] {
width: 100%;
2011-02-25 19:41:54 +00:00
text-align: center;
2011-02-23 22:24:08 +00:00
}
2011-03-05 04:22:03 +00:00
label.error {
color: #c33;
}
input.error {
2011-03-05 16:38:44 +00:00
background-color: #ffc;
2011-03-05 04:22:03 +00:00
}