configurationengine/source/scripts/cone_base.html
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
equal deleted inserted replaced
-1:000000000000 0:2e8eeb919028
       
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
       
     2 <html lang="en">
       
     3 <head>
       
     4 {% block head %}
       
     5 <style type="text/css">
       
     6     body {
       
     7         font-family: Nokia Standard Multiscript, Tahoma, Verdana, Arial;
       
     8         font-size: 0.8em;
       
     9         color: #0055B7;
       
    10     }
       
    11 
       
    12     h1 {
       
    13         padding: 30px 0 0 0;
       
    14         margin: 0;
       
    15         text-align: left;
       
    16     }
       
    17 
       
    18     #date {
       
    19         text-align: center;
       
    20     }
       
    21 
       
    22     hr {
       
    23         height: 1px;
       
    24         background-color: cccccc;
       
    25         color: #cccccc;
       
    26     }
       
    27 
       
    28     h2 h3 {
       
    29         padding: 10px 0 10px 0;
       
    30         margin: 0;
       
    31     }
       
    32 
       
    33     table.report {
       
    34         width: 100%;
       
    35         border: 1px solid #e0dfe3;
       
    36         border-collapse: collapse;
       
    37         color: #333333;
       
    38     }
       
    39 
       
    40     table.report th {
       
    41         text-align: left;
       
    42         padding: 5px;
       
    43         background-color: #f9fafd;
       
    44         color: #595a5f;
       
    45         border-bottom: 1px #999999 solid;
       
    46     }
       
    47 
       
    48     table.report th.featureName {
       
    49         background-color: #f2f2f3;
       
    50         font: #595a5f Tahoma, Verdana, Arial bold;
       
    51         font-size: 1.1em;
       
    52         border-top: 3px #9d9da1;
       
    53         border-top-style: double;
       
    54         border-bottom: 3px #9d9da1;
       
    55         border-bottom-style: double;
       
    56     }
       
    57 
       
    58     table.report th.header {
       
    59         background-color: #f9fafd;
       
    60         font: #595a5f Tahoma, Verdana, Arial bold;
       
    61         font-size: 0.8em;
       
    62         border-top: 1px #9d9da1;
       
    63         border-bottom: 1px #9d9da1;
       
    64     }
       
    65 
       
    66     table.report td {
       
    67         word-wrap: break-word;
       
    68         border: 1px #EBEBEB;
       
    69         padding: 5px;
       
    70         border-style: solid; 
       
    71         vertical-align: top;
       
    72         font: Tahoma, Verdana, Arial;
       
    73         _font-size: 0.8em;
       
    74     }
       
    75 
       
    76     table.summary {
       
    77         border: 1px solid #e0dfe3;
       
    78         border-collapse: collapse;
       
    79         color: #333333;
       
    80     }
       
    81 
       
    82     table.summary th {
       
    83         text-align: left;
       
    84         padding: 5px;
       
    85         background-color: #f9fafd;
       
    86         color: #595a5f;
       
    87         border-bottom: 1px #999999 solid;
       
    88     }
       
    89 
       
    90     table.summary th.featureName {
       
    91         background-color: #f2f2f3;
       
    92         font: #595a5f Tahoma, Verdana, Arial bold;
       
    93         font-size: 1.1em;
       
    94         border-top: 3px #9d9da1;
       
    95         border-top-style: double;
       
    96         border-bottom: 3px #9d9da1;
       
    97         border-bottom-style: double;
       
    98     }
       
    99 
       
   100     table.summary td {
       
   101         word-wrap: break-word;
       
   102         border: 1px #EBEBEB;
       
   103         padding: 5px;
       
   104         border-style: solid; 
       
   105         vertical-align: top;
       
   106         font: Tahoma, Verdana, Arial;
       
   107         _font-size: 0.8em;
       
   108     }
       
   109 
       
   110     .currentValue {
       
   111         background-color: #e8f2fe;
       
   112     }
       
   113 </style>
       
   114 <title>{% block title %}{% endblock %} - ConE</title>
       
   115 {% endblock head %}
       
   116 </head>
       
   117 <body>
       
   118 <div id="content">{% block content %}{% endblock %}</div>
       
   119 <div id="footer">{% block footer %}{% endblock %}</div>
       
   120 </body>
       
   121 </html>