Advertisement
Guest User

index.css

a guest
Mar 24th, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Lato);
  2. @import url(http://fonts.googleapis.com/css?family=Ubuntu);
  3. @import url(http://fonts.googleapis.com/css?family=Nunito);
  4.  
  5. body {
  6. background: url(../images/bg2.png) repeat-x bottom fixed;
  7. background-color: #3aa4e2;
  8. font-family: 'Lato';
  9. margin-top: 70px;
  10. }
  11.  
  12. #container {
  13. display: block;
  14. top: 0;
  15. left: 0;
  16. bottom: 0;
  17. right: 0;
  18. margin: auto;
  19. height: 371px;
  20. width: 780px;
  21. border: 1px solid #919191;
  22. -webkit-border-radius: 4px;
  23. -moz-border-radius: 4px;
  24. border-radius: 4px;
  25. background-color: #fff;
  26. padding: 10px;
  27. margin-top: 10px
  28. }
  29.  
  30. input.logintext {
  31. width: 180px;
  32. height: 12px;
  33. padding: 10px;
  34. border: 1px solid #919191;
  35. -webkit-border-radius: 4px;
  36. -moz-border-radius: 4px;
  37. border-radius: 2px;
  38. float: right;
  39. }
  40.  
  41. .loginbutton {
  42. font-family: 'Nunito';
  43. color: #fff;
  44. font-size: 16px;
  45. background-image: url(../images/gradient.png);
  46. background-position: 0, center;
  47. display: inline-block;
  48. background-color: #81bb0f;
  49. height: 71px;
  50. width: 100px;
  51. margin-left: 10px;
  52. box-shadow:0 0 0 1px rgba(0,0,0,.25) inset,0 0 0 2px rgba(255,255,255,.25) inset;
  53. border: 1px solid #919191;
  54. -webkit-border-radius: 4px;
  55. -moz-border-radius: 4px;
  56. border-radius: 2px;
  57. padding: 10px
  58. }
  59.  
  60. .regbutton {
  61. text-align: center;
  62. font-family: 'Nunito';
  63. color: #fff;
  64. font-size: 16px;
  65. background-image: url(../images/gradient.png);
  66. background-position: 0, center;
  67. float: left;
  68. display: inline-block;
  69. background-color: #e70505;
  70. height: 37px;
  71. margin-right: 21px;
  72. width: 100px;
  73. box-shadow:0 0 0 1px rgba(0,0,0,.25) inset,0 0 0 2px rgba(255,255,255,.25) inset;
  74. border: 1px solid #919191;
  75. -webkit-border-radius: 4px;
  76. -moz-border-radius: 4px;
  77. border-radius: 2px;
  78. padding: 16px
  79. }
  80.  
  81. .fbbutton {
  82. text-align: center;
  83. font-family: 'Nunito';
  84. color: #fff;
  85. font-size: 16px;
  86. background-image: url(../images/gradient.png);
  87. background-position: 0, center;
  88. float: left;
  89. display: inline-block;
  90. background-color: #3b5998;
  91. height: 37px;
  92. width: 100px;
  93. box-shadow:0 0 0 1px rgba(0,0,0,.25) inset,0 0 0 2px rgba(255,255,255,.25) inset;
  94. border: 1px solid #919191;
  95. -webkit-border-radius: 4px;
  96. -moz-border-radius: 4px;
  97. border-radius: 2px;
  98. padding: 16px;
  99. margin-right: 10px
  100. }
  101.  
  102. .usersonline {
  103. text-align: center;
  104. font-family: 'Nunito';
  105. color: #919191;
  106. font-size: 16px;
  107. background-image: url(../images/gradient.png);
  108. background-position: 0, center;
  109. float: left;
  110. display: inline-block;
  111. background-color: #e6e6e6;
  112. height: 37px;
  113. margin-right: 21px;
  114. width: 100px;
  115. box-shadow:0 0 0 1px rgba(0,0,0,.25) inset,0 0 0 2px rgba(255,255,255,.25) inset;
  116. border: 1px solid #919191;
  117. -webkit-border-radius: 4px;
  118. -moz-border-radius: 4px;
  119. border-radius: 2px;
  120. padding: 16px
  121. }
  122.  
  123. .loginbutton:hover, .regbutton:hover, .fbbutton:hover, .usersonline:hover {
  124. opacity: 0.8;
  125. }
  126.  
  127. #logincontainer {
  128. top: 0;
  129. left: 0;
  130. bottom: 0;
  131. right: 0;
  132. margin: auto;
  133. border: 1px solid #919191;
  134. -webkit-border-radius: 4px;
  135. -moz-border-radius: 4px;
  136. border-radius: 4px;
  137. background-color: #fff;
  138. padding: 10px;
  139. height: 70px;
  140. width: 780px;
  141.  
  142. }
  143.  
  144. .image {
  145. background: url(../images/mainimg2.png);
  146. height: 371px;
  147. width: 780px;
  148. -webkit-border-radius: 4px;
  149. -moz-border-radius: 4px;
  150. border-radius: 4px;
  151. -webkit-border-radius: 4px;
  152. -moz-border-radius: 4px;
  153. border-radius: 4px;
  154. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement