style.css 1023 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body{
  6. background-color: white;
  7. overflow: hidden;
  8. }
  9. .nav{
  10. width: 310px;
  11. height: 50px;
  12. position: fixed;
  13. top: 0;
  14. left: 50%;
  15. transform: translateX(-50%);
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-around;
  19. opacity: .3;
  20. transition: opacity .5s;
  21. }
  22. .nav:hover{
  23. opacity: 1;
  24. }
  25. .clr{
  26. height: 30px;
  27. width: 30px;
  28. background-color: blue;
  29. border-radius: 50%;
  30. border: 3px solid rgb(214, 214, 214);
  31. transition: transform .5s;
  32. }
  33. .clr:hover{
  34. transform: scale(1.2);
  35. }
  36. .clr:nth-child(1){
  37. background-color: #000;
  38. }
  39. .clr:nth-child(2){
  40. background-color: #EF626C;
  41. }
  42. .clr:nth-child(3){
  43. background-color: #fdec03;
  44. }
  45. .clr:nth-child(4){
  46. background-color: #24d102;
  47. }
  48. .clr:nth-child(5){
  49. background-color: #fff;
  50. }
  51. button{
  52. border: none;
  53. outline: none;
  54. padding: .6em 1em;
  55. border-radius: 3px;
  56. background-color: #03bb56;
  57. color: #fff;
  58. }
  59. .save{
  60. background-color: #0f65d4;
  61. }