nut-styles.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* buat benerin background nya */
  2. /* body {
  3. margin: 0;
  4. padding: 0;
  5. border: 0;
  6. height: 100vh;
  7. font-family: sans-serif;
  8. box-sizing: border-box;
  9. list-style: none;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. */
  14. html {
  15. font-size: 8px;
  16. background: url('./img/game-off-2021.gif') center;
  17. background-size: cover;
  18. }
  19. body,html {
  20. margin: 0;
  21. padding: 0;
  22. border: 0;
  23. height: 100vh;
  24. font-family: sans-serif;
  25. display: flex;
  26. flex-direction: column;
  27. font-family: sans-serif;
  28. box-sizing: border-box;
  29. list-style: none;
  30. }
  31. .keys {
  32. display: flex;
  33. min-height: 69vh;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .key {
  38. border: .4rem solid black;
  39. border-radius: .5rem;
  40. margin: 1rem;
  41. font-size: 1.5rem;
  42. padding: 1rem .5rem;
  43. transition: all .07s ease;
  44. width: 10rem;
  45. text-align: center;
  46. color: white;
  47. background: rgba(0,0,0,0.4);
  48. text-shadow: 0 0 .5rem black;
  49. }
  50. .keys2 {
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. }
  55. .playing {
  56. transform: scale(1.1);
  57. border-color: #ffc600;
  58. box-shadow: 0 0 1rem #ffc600;
  59. }
  60. kbd {
  61. display: block;
  62. font-size: 4rem;
  63. }
  64. .sound {
  65. font-size: 1.2rem;
  66. text-transform: uppercase;
  67. letter-spacing: .1rem;
  68. color: #ffc600;
  69. }