Commit 8da91bffeecf635c623f8fa14f1369450fedc41c

Authored by Elena.Budnik
1 parent 25c0f325

error while delete css

Showing 1 changed file with 206 additions and 0 deletions   Show diff stats
js/resources/css/styles.css 0 → 100755
... ... @@ -0,0 +1,206 @@
  1 +/*
  2 +Design by Metamorphosis Design
  3 +http://www.metamorphozis.com
  4 +Released for free under a Creative Commons Attribution 2.5 License
  5 +*/
  6 +
  7 +*
  8 +{
  9 +margin: 0px;
  10 +padding: 0px;
  11 +}
  12 +
  13 +a:link {
  14 + color: #A5A9B2;
  15 +}
  16 +
  17 +a:hover {
  18 + text-decoration: none;
  19 + color: #FF0000;
  20 +}
  21 +
  22 +a:visited {
  23 + color: #A5A9B2;
  24 +}
  25 +
  26 +body {
  27 +
  28 + background: url(../images/ciel10.jpg) ;
  29 + font: 13px Arial, Helvetica, sans-serif;
  30 + color: #555555;
  31 + margin-top: 20px;
  32 +}
  33 +
  34 +#content
  35 +{
  36 + width: 738px;
  37 + margin: 0px auto;
  38 +}
  39 +
  40 +#main
  41 +{
  42 +width: 710px;
  43 +height: 320px;
  44 +padding: 10px;
  45 +padding-top: 20px;
  46 +/*background: #ffffff; */
  47 +background: #F6F3E7;
  48 +}
  49 +
  50 +#main2
  51 +{
  52 +width: 710px;
  53 +height: 830px;
  54 +padding: 10px;
  55 +padding-top: 20px;
  56 +/*background: #ffffff; */
  57 +background: #F6F3E7;
  58 +}
  59 +
  60 +#back
  61 +{
  62 +width: 738px;
  63 +}
  64 +
  65 +#right
  66 +{
  67 + width: 215px;
  68 + float: right;
  69 +}
  70 +
  71 +#right H3
  72 +{
  73 +width: 160px;
  74 +height: 29px;
  75 +font-size: 14px;
  76 +font-weight: bold;
  77 +padding-left: 0px;
  78 +padding-top: 10px;
  79 +text-transform: uppercase;
  80 +text-decoration: underline;
  81 +color: #555555;
  82 +text-align: center;
  83 +/*background: url(../images/test.png) no-repeat; */
  84 +}
  85 +
  86 +#right H4
  87 +{
  88 + margin: 0;
  89 + padding: 0px;
  90 + font-size: 12px;
  91 + color:#555555;
  92 +}
  93 +
  94 +#right ul {
  95 + list-style: none;
  96 + margin-bottom: 10px;
  97 + padding-top: 10px;
  98 +}
  99 +
  100 +#right li {
  101 + padding: 4px;
  102 + padding-left: 20px;
  103 + padding-right: 20px;
  104 +
  105 +}
  106 +
  107 +
  108 +#right a {
  109 + color: #6495ED;
  110 +}
  111 +
  112 +#right a:hover {
  113 + color: #ff0000;
  114 +}
  115 +
  116 +#right p
  117 +{
  118 +font-size: 10px;
  119 +padding-left: 10px;
  120 +}
  121 +
  122 +
  123 +#left
  124 +{
  125 +width: 450px;
  126 +margin-left: 20px;
  127 +}
  128 +
  129 +#left H4
  130 +{
  131 + margin: 0;
  132 + padding: 0px;
  133 + font-size: 12px;
  134 + color:#555555;
  135 +}
  136 +
  137 +#left a
  138 +{
  139 +color: #6495ED;
  140 +text-decoration: none;
  141 +}
  142 +
  143 +#left a:hover
  144 +{
  145 +color: #FF0000;
  146 +text-decoration: none;
  147 +}
  148 +
  149 +#left p {
  150 + margin: 5px;
  151 + padding: 0;
  152 +}
  153 +
  154 +#left h2 {
  155 + margin: 0;
  156 + padding: 0;
  157 + padding-top: 0px;
  158 + color: #555555;
  159 +}
  160 +
  161 +#left ol, #left ul
  162 +{
  163 +margin-left: 30px;
  164 +}
  165 +
  166 +.date {
  167 + text-align: left;
  168 + color: #555555;
  169 + font-size: 10px;
  170 +
  171 +}
  172 +
  173 +.date a {
  174 + color: #6495ED;
  175 +
  176 +}
  177 +
  178 +
  179 +#footer {
  180 + height: 50px;
  181 + clear: both;
  182 + padding-top: 1px;
  183 +}
  184 +
  185 +#footer p {
  186 + margin: 0;
  187 + font-size: 10px;
  188 + text-align: center;
  189 + color: #666666;
  190 +}
  191 +
  192 +#footer a {
  193 + color: #666666;
  194 +}
  195 +
  196 +#left .news {
  197 +
  198 + font-size: 13px;
  199 + color: #003366;
  200 +}
  201 +
  202 +#left .warning {
  203 +
  204 + font-size: 13px;
  205 + color: #880000;
  206 +}
... ...