removing log dir from .gitignore
[monkeycharger.git] / vendor / rails / actionwebservice / lib / action_web_service / templates / scaffolds / layout.erb
blob167613f6819726c2e0c294ddc4e498756fd63bf5
1 <html>
2 <head>
3   <title><%= @scaffold_class.wsdl_service_name %> Web Service</title>
4   <style>
5     body { background-color: #fff; color: #333; }
7     body, p, ol, ul, td {
8       font-family: verdana, arial, helvetica, sans-serif;
9       font-size:   13px;
10       line-height: 18px;
11     }
13     pre {
14       background-color: #eee;
15       padding: 10px;
16       font-size: 11px;
17     }
19     a { color: #000; }
20     a:visited { color: #666; }
21     a:hover { color: #fff; background-color:#000; }
23     .fieldWithErrors {
24       padding: 2px;
25       background-color: red;
26       display: table;
27     }
29     #errorExplanation {
30       width: 400px;
31       border: 2px solid red;
32       padding: 7px;
33       padding-bottom: 12px;
34       margin-bottom: 20px;
35       background-color: #f0f0f0;
36     }
38     #errorExplanation h2 {
39       text-align: left;
40       font-weight: bold;
41       padding: 5px 5px 5px 15px;
42       font-size: 12px;
43       margin: -7px;
44       background-color: #c00;
45       color: #fff;
46     }
48     #errorExplanation p {
49       color: #333;
50       margin-bottom: 0;
51       padding: 5px;
52     }
54     #errorExplanation ul li {
55       font-size: 12px;
56       list-style: square;
57     }
58   </style>
59 </head>
60 <body>
62 <%= @content_for_layout %>
64 </body>
65 </html>