Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.76 KB | None | 0 0
  1. html {
  2.     margin: 0px;
  3. }
  4.  
  5. body {
  6.     margin: 0px;
  7.     text-align: center;
  8.     background: #BBBBBB;
  9.     font-family: Bell Gothic Std Black;
  10. }
  11.  
  12. p {
  13.     margin-left: 10px;
  14.     font-size: 13px;
  15. }
  16. a {
  17.     text-decoration: none;
  18.     color: #000000;
  19. }
  20.  
  21. #logo {
  22.     height: 150px;
  23.     width: 300px;
  24.     border: none;
  25. }
  26.  
  27. #main {
  28.     background: #EEEEEE;
  29.     margin: 0px auto;
  30.     text-align: left;
  31.     min-height: 600px;
  32.     max-width: 900px;
  33.     border-left: 2px solid #777;
  34.     border-right: 2px solid #777;
  35. }
  36. #header {
  37.     background: #222;
  38.     max-width: 900px;
  39.     min-height: 150px;
  40. }
  41. #header-text {
  42.     display: inline;
  43.     font-size: 100px;
  44. }
  45.  
  46. #login-container {
  47.     position: relative;
  48.     float: right;
  49.     background: #615;
  50.     max-width: 500px;
  51.     height: 40px;
  52.     display: block;
  53. }
  54. #login-container a:hover {
  55.     color: white;
  56. }
  57. #loginform {
  58.     margin: 0px auto;
  59.     min-height: 200px;
  60.     max-width: 310px;
  61.     border: 2px solid #000;
  62.     background: #CCCCCC;
  63.     font-size: 14px;
  64. }
  65. #loginform table  {
  66.     margin: 20px;
  67. }
  68. .red {
  69.     color: red;
  70. }
  71. #topmenu {
  72.     background: url(../img/menu.png);
  73.     min-height: 50px;
  74.     display: block;
  75.     margin-top: 0px;
  76. }
  77. #topmenu ul {
  78.     display: block;
  79.     position: relative;
  80.     margin-top: 0px;
  81.     top: 10px;
  82.     position: relative;
  83. }
  84.  
  85. #topmenu ul li{
  86.     display: inline;
  87.     padding: 10px 10px 18px 10px;
  88.     margin-top: 10px;
  89.     zoom: 1;
  90.     position: relative;
  91.     color: #000000;
  92. }
  93. #topmenu ul li.hover,
  94. #topmenu ul li:hover {
  95.     background: url(../img/hover.png);
  96. }
  97. #listitem-containerdiv {
  98.     position: relative;
  99.     margin: 0px;
  100. }
  101. #listitem-hoverdiv {
  102.     position: absolute;
  103.     margin: 0px;
  104. }
  105. #content {
  106.     background: #EEEEEE;
  107.     max-width: 900px;
  108.     min-height: 300px;
  109. }
  110. #overlay {
  111.     position: fixed;
  112.     height: 100%;
  113.     width: 100%;
  114.     top: 0px;
  115.     left: 0px;
  116.     background: rgba(0,0,0,0.5);
  117.     z-index: 200;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement