style.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body
  2. {
  3. background-image:url('back.jpg');
  4. background-color:#000000;
  5. color: #FFFFFF;
  6. }
  7. .outer {
  8. display: table;
  9. position: absolute;
  10. height: 99%;
  11. width: 99%;
  12. }
  13. .middle {
  14. display: table-cell;
  15. vertical-align: middle;
  16. }
  17. .inner {
  18. margin-left: auto;
  19. margin-right: auto;
  20. width: 70%;
  21. opacity:.80;
  22. -moz-opacity:.80;
  23. filter:alpha(opacity=80);
  24. background-color:#000000;
  25. -moz-box-shadow: 3px 3px 4px #000;
  26. -webkit-box-shadow: 3px 3px 4px #000;
  27. box-shadow: 3px 3px 4px #000;
  28. /* For IE 8 */
  29. -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
  30. /* For IE 5.5 - 7 */
  31. filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
  32. }
  33. .centered {
  34. text-align: center;
  35. }
  36. a:link {
  37. color: rgb(61, 101, 148);
  38. font-family: Tahoma,Verdana,Helvetica,sans-serif;
  39. text-decoration: none;
  40. }
  41. a:active {
  42. color: rgb(61, 101, 148);
  43. font-family: Tahoma,Verdana,Helvetica,sans-serif;
  44. text-decoration: none;
  45. }
  46. a:visited {
  47. color: rgb(61, 101, 148);
  48. font-family: Tahoma,Verdana,Helvetica,sans-serif;
  49. text-decoration: none;
  50. }
  51. a:hover {
  52. color: rgb(45, 64, 102);
  53. font-family: Tahoma,Verdana,Helvetica,sans-serif;
  54. text-decoration: none;
  55. }