| /* |
| Copyright 2011 the Melange authors. |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| /* @group Typography */ |
| @import "common.less"; |
| |
| @image_server_error: "@{images_soc_location}/melange-server-error-background.png"; |
| |
| body, |
| button, |
| input, |
| select, |
| textarea { |
| color: #000000; |
| font: ~"12px/1.5" Arial, "Helvetica Neue", "Liberation Sans", FreeSans, sans-serif; |
| } |
| |
| h1 { |
| font-size: 25px; |
| } |
| |
| h2 { |
| font-size: 23px; |
| } |
| |
| h3 { |
| font-size: 21px; |
| } |
| |
| h4 { |
| font-size: 19px; |
| } |
| |
| h5 { |
| font-size: 17px; |
| } |
| |
| h6 { |
| font-size: 15px; |
| } |
| |
| ol, |
| ul { |
| margin: 1em 0em; |
| padding: 0px 0px 0px 40px; |
| } |
| |
| ol { |
| list-style: decimal; |
| } |
| |
| ul { |
| list-style: disc; |
| } |
| |
| li { |
| margin-left: 30px; |
| } |
| |
| address, |
| dl, |
| fieldset, |
| figure, |
| p, |
| h1, |
| h2, |
| h3, |
| h4, |
| h5, |
| h6, |
| hr, |
| ol, |
| ul, |
| pre, |
| table { |
| margin-bottom: 10px; |
| margin-top: 0px; |
| } |
| |
| a, |
| a:visited, |
| .ui-widget-content a { |
| color: #0f649d; |
| text-decoration: none; |
| } |
| |
| /* @group error */ |
| |
| body.error { |
| background: url(@image_server_error) top center no-repeat; |
| background-color: #000000; |
| } |
| |
| #error-content { |
| color: #999999; |
| margin: 275px auto 0px auto; |
| width: 650px; |
| |
| h1 { |
| display: inline; |
| float: left; |
| font-size: 80px; |
| margin-top: 0px; |
| padding-right: 20px; |
| } |
| |
| p { |
| font-size: 20px; |
| font-weight: bold; |
| line-height: 130%; |
| padding-top: 15px; |
| } |
| |
| a { |
| &:active, |
| &:hover, |
| &:link, |
| &:visited { |
| color: #ff8b3e; |
| } |
| } |
| } |
| /* @end */ |