styles.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. canvas {
  2. cursor: default;
  3. outline: none;
  4. }
  5. body {
  6. background-color: #222222;
  7. }
  8. .superdev {
  9. color: rgb(37,37,37);
  10. text-shadow: 0px 1px 1px rgba(250,250,250,0.1);
  11. font-size: 50pt;
  12. display: block;
  13. position: relative;
  14. text-decoration: none;
  15. background-color: rgb(83,87,93);
  16. box-shadow: 0px 3px 0px 0px rgb(34,34,34),
  17. 0px 7px 10px 0px rgb(17,17,17),
  18. inset 0px 1px 1px 0px rgba(250, 250, 250, .2),
  19. inset 0px -12px 35px 0px rgba(0, 0, 0, .5);
  20. width: 70px;
  21. height: 70px;
  22. border: 0;
  23. border-radius: 35px;
  24. text-align: center;
  25. line-height: 68px;
  26. }
  27. .superdev:active {
  28. box-shadow: 0px 0px 0px 0px rgb(34,34,34),
  29. 0px 3px 7px 0px rgb(17,17,17),
  30. inset 0px 1px 1px 0px rgba(250, 250, 250, .2),
  31. inset 0px -10px 35px 5px rgba(0, 0, 0, .5);
  32. background-color: rgb(83,87,93);
  33. top: 3px;
  34. color: #fff;
  35. text-shadow: 0px 0px 3px rgb(250,250,250);
  36. }
  37. .superdev:hover {
  38. background-color: rgb(100,100,100);
  39. }