removing log dir from .gitignore
[monkeycharger.git] / vendor / rails / actionpack / lib / action_controller / templates / scaffolds / layout.erb
blob759781e0e780bac3948264b6df5e948c2f62aaed
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2    "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <head>
5   <title>Scaffolding</title>
6   <style>
7     body { background-color: #fff; color: #333; }
9     body, p, ol, ul, td {
10       font-family: verdana, arial, helvetica, sans-serif;
11       font-size:   13px;
12       line-height: 18px;
13     }
15     pre {
16       background-color: #eee;
17       padding: 10px;
18       font-size: 11px;
19     }
21     a { color: #000; }
22     a:visited { color: #666; }
23     a:hover { color: #fff; background-color:#000; }
25     .fieldWithErrors {
26       padding: 2px;
27       background-color: red;
28       display: table;
29     }
31     #errorExplanation {
32       width: 400px;
33       border: 2px solid red;
34       padding: 7px;
35       padding-bottom: 12px;
36       margin-bottom: 20px;
37       background-color: #f0f0f0;
38     }
40     #errorExplanation h2 {
41       text-align: left;
42       font-weight: bold;
43       padding: 5px 5px 5px 15px;
44       font-size: 12px;
45       margin: -7px;
46       background-color: #c00;
47       color: #fff;
48     }
50     #errorExplanation p {
51       color: #333;
52       margin-bottom: 0;
53       padding: 5px;
54     }
56     #errorExplanation ul li {
57       font-size: 12px;
58       list-style: square;
59     }
60   </style>
61 </head>
62 <body>
64 <p style="color: green"><%= flash[:notice] %></p>
66 <%= yield %>
68 </body>
69 </html>