Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3.  
  4. body
  5. {
  6. background-image:url(../images/background.jpg);
  7. background-position:center top;
  8. background-repeat:no-repeat;
  9. background-attachment:fixed;
  10. background-color:#000000;
  11. font-family:Verdana;
  12. font-size:14px;
  13. color:#FFFFFF;
  14. font-weight:bolder;
  15. }
  16.  
  17. a:link
  18. {
  19. text-decoration:none;
  20. color:#FFFFFF;
  21. }
  22.  
  23. a:active
  24. {
  25. text-decoration:none;
  26. color:#FFFFFF;
  27. }
  28.  
  29. a:visited
  30. {
  31. text-decoration:none;
  32. color:#FFFFFF;
  33. }
  34.  
  35. a:active
  36. {
  37. text-decoration:none;
  38. color:#FFFFFF;
  39. }
  40.  
  41. /* Classes -------------------------------------------------------------------------------------------- */
  42.  
  43. .login_container
  44. {
  45. background-image:url(../images/bacK_transparent.png);
  46. margin:auto;
  47. margin-top:100px;
  48. width:400px;
  49. height:auto;
  50. border-top-right-radius:20px;
  51. border-bottom-left-radius:20px;
  52. box-shadow: -5px 5px 10px #000000;
  53. }
  54.  
  55. .main_container
  56. {
  57. background-image:url(../images/bacK_transparent.png);
  58. margin:auto;
  59. margin-top:35px;
  60. width:1000px;
  61. height:auto;
  62. border-top-right-radius:20px;
  63. border-bottom-left-radius:20px;
  64. box-shadow: -5px 5px 10px #000000;
  65. }
  66.  
  67. .left
  68. {
  69. width:210px;
  70. height:auto;
  71. border-bottom-left-radius:20px;
  72. float:left;
  73. padding-top:10px;
  74. padding-left:10px;
  75. }
  76.  
  77. .right
  78. {
  79. width:760px;
  80. height:auto;
  81. border-top-right-radius:20px;
  82. float:left;
  83. padding-top:10px;
  84. padding-left:10px;
  85. padding-right:10px;
  86. }
  87.  
  88. .lista
  89. {
  90. margin-top:-14px;
  91. }
  92.  
  93. .white_hr
  94. {
  95. border-style:solid;
  96. border-width:1px;
  97. color:#FFFFFF;
  98. }
  99.  
  100. .black_hr
  101. {
  102. border-style:solid;
  103. border-width:1px;
  104. color:#000000;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement