Advertisement
Guest User

css fixed

a guest
Feb 10th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. @charset "UTF-8";
  2. body {
  3. background: #000000 url('images/bg.jpg') no-repeat center fixed;
  4. -webkit-background-size: cover;
  5. -moz-background-size: cover;
  6. -o-background-size: cover;
  7. background-size: cover;
  8. }
  9. #mainas {
  10. width: 1000px;
  11. margin: auto;
  12. }
  13. #header {
  14. margin-top: 100px;
  15. }
  16. #header h1 {
  17. text-align: center;
  18. font-family: 'Raleway', sans-serif;
  19. text-transform: uppercase;
  20. color: rgba(0,0,0,.5);
  21. letter-spacing: .3em;
  22. }
  23. #header h2 {
  24. text-align: center;
  25. font-family: Arial;
  26. color: rgba(0,0,0,.5);
  27. font-size: 9pt;
  28. margin-top: -30px;
  29. }
  30.  
  31. #blokas {
  32. margin: auto;
  33. width: 400px;
  34. margin-top: 30px;
  35. background-color: rgba(80, 237, 187,.5);
  36. }
  37.  
  38. #blokas h1 {
  39. text-align: center;
  40. color: white;
  41. font-weight: lighter;
  42. font-size: 10pt;
  43. font-family: Arial;
  44. text-transform: uppercase;
  45. padding: 5pt;
  46. background-color: rgba(0,0,0,.5);
  47. }
  48.  
  49. .blokelis {
  50. width: 100%;
  51. height: 30px;
  52. background-color: #ddd;
  53. margin: 10px 0px;
  54. display: inline-block;
  55. position: relative;
  56. }
  57.  
  58. .blokelis p {
  59. margin-top: -0px;
  60. line-height: 30px;
  61. position: absolute;
  62. color: #fff;
  63. font-size: 12px;
  64. font-family: Arial;
  65. }
  66.  
  67. .blokelis p:nth-child(2) {
  68. width: 120px;
  69. padding-left: 20px;
  70. background-color: rgba(0,0,0,0.3);
  71. }
  72.  
  73. .blokelis p:nth-child(3) {
  74. right: 10px;
  75. color:rgba(0, 0, 0, 0.5);
  76. }
  77.  
  78. .progresas {
  79. position: absolute;
  80. height: 100%;
  81. left: 0;
  82. }
  83.  
  84. #footer {
  85. width: 400px;
  86. margin: -5px auto 0;
  87. }
  88.  
  89. #footer p {
  90. text-align:center;
  91. font-family: arial;
  92. font-size: 9pt;
  93. color: #fff;
  94. text-shadow: 1px 1px #000;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement