Simple website with some JavaScript games.
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.

41 lines
682 B

  1. .playerDiv{
  2. width: 450px;
  3. box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  4. transition: 0.3s;
  5. margin-left: 32.5%;
  6. margin-bottom: 5%;
  7. }
  8. .player{
  9. width: 200px;
  10. height: 60px;
  11. font-size: 20px;
  12. font-family: monospace;
  13. color: brown;
  14. margin: 5px;
  15. background: #ccc;
  16. border: none;
  17. float: left;
  18. }
  19. .main{
  20. width: 490px;
  21. box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  22. transition: 0.3s;
  23. margin-left: 30%;
  24. margin-top: 5%;
  25. }
  26. .btn{
  27. width: 150px;
  28. height: 150px;
  29. background: #ccc;
  30. border: none;
  31. margin: 5px;
  32. font-size: 1px;
  33. color: brown;
  34. }