Advertisement
Guest User

buttonSelected style css

a guest
Mar 12th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.42 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     box-sizing: border-box;
  5. }
  6.  
  7. body {
  8.     width: 100vw;
  9.     height: 100vh;
  10.     display: flex;
  11.     flex-direction: column;
  12.     justify-content: flex-start;
  13.     align-items: center;
  14.     flex-wrap: nowrap;
  15. }
  16.  
  17. .titulo {
  18.     width: 100%;
  19.     height: 200px;
  20.     display: flex;
  21.     flex-direction: row;
  22.     justify-content: center;
  23.     align-items: center;
  24.     flex-wrap: nowrap;
  25. }
  26.  
  27. .contenedor--botones {
  28.     width: 600px;
  29.     height: 100%;
  30.     display: flex;
  31.     flex-direction: column;
  32.     justify-content: flex-start;
  33.     align-items: flex-start;
  34.     flex-wrap: nowrap;
  35. }
  36.  
  37. .filas {
  38.     width: 100%;
  39.     height: 100px;
  40.     display: flex;
  41.     flex-direction: row;
  42.     justify-content: space-evenly;
  43.     align-items: center;
  44.     flex-wrap: nowrap;
  45. }
  46.  
  47. .boton {
  48.     height: 80px;
  49.     display: flex;
  50.     flex-direction: column;
  51.     justify-content: center;
  52.     align-items: center;
  53.     flex-wrap: nowrap;
  54.     flex-grow: 1;
  55.     margin-left: 20px;
  56.     font-size: 34px;
  57.     font-weight: bold;
  58.     cursor: pointer;
  59.     border: 1px solid black;
  60.     border-radius: 20px;
  61.     transition: 0.3s;
  62. }
  63.  
  64. .boton:hover {
  65.     color: #fff;
  66.     background-color: rgb(51, 51, 51);
  67.     transition: 0.3s;
  68. }
  69.  
  70. .boton:nth-child(3) {
  71.     margin-right: 20px;
  72. }
  73.  
  74. .boton-disabled {
  75.     border-color: rgb(119, 119, 119);
  76.     color: rgb(119, 119, 119);
  77.     pointer-events: none;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement