Style.css 809 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. html,
  2. body {
  3. overflow: hidden;
  4. height: 100%;
  5. width: 100%;
  6. background: #262b2e
  7. }
  8. #wrapper {
  9. height: 100%;
  10. width: 100%;
  11. text-align: center;
  12. display: table;
  13. position: absolute;
  14. }
  15. #title {
  16. display: table-cell;
  17. vertical-align: middle;
  18. z-index: 999;
  19. }
  20. #title h2 {
  21. color: #fff;
  22. font-size: 45px;
  23. font-family: "museo-slab";
  24. }
  25. #title h3 {
  26. color: #fff;
  27. font-size: 25px;
  28. font-family: "museo-sans";
  29. font-weight: 300
  30. }
  31. #wrapper canvas {
  32. position: absolute;
  33. top: 0;
  34. left: 0;
  35. width: 100%;
  36. }
  37. #canvas {
  38. z-index: 1;
  39. }
  40. #canvasbg {
  41. z-index: -10;
  42. -webkit-filter: blur(3px);
  43. -moz-filter: blur(3px);
  44. -o-filter: blur(3px);
  45. filter: blur(3px);
  46. opacity: 0.6;
  47. }