You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

board.css 960B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. html, body, svg {
  2. padding:0;
  3. margin:0;
  4. }
  5. #menu {
  6. border-radius:3px;
  7. font-family:"Segoe UI","Roboto","Ubuntu";
  8. position:fixed;
  9. left:10px;
  10. top:10px;
  11. background-color:rgba(100,200,255,0.7);
  12. width:100px;
  13. height:2em;
  14. overflow:hidden;
  15. box-shadow: 0px 0px 9px black;
  16. transition-duration:1s;
  17. }
  18. #menu:hover {
  19. border-radius:0;
  20. left:0;
  21. top:0;
  22. color:black;
  23. background-color:rgba(0,100,255,0.9);
  24. width:200px;
  25. height:100%;
  26. transition-duration:1s;
  27. }
  28. #menu #menuItems {
  29. display:none;
  30. }
  31. #menu:hover #menuItems {
  32. display:block;
  33. }
  34. #menu h2{ /*Menu title ("Menu")*/
  35. font-size:22px;
  36. font-family:monospace;
  37. letter-spacing:5px;
  38. text-shadow: 0px 0px 9px white;
  39. color:black;
  40. text-align:center;
  41. word-wrap:break-word;
  42. padding:0;
  43. margin:0;
  44. }
  45. #menu:hover h2{
  46. text-shadow: 0px 0px 3px white;
  47. word-wrap:normal;
  48. font-size:2em;
  49. }
  50. #menu li {
  51. width:150px;
  52. }
  53. #menu li a {
  54. color:#111;
  55. border:0;
  56. }
  57. #menu li:hover {
  58. text-shadow: 0px 0px 3px white;
  59. }