styles.module.css (1728B)
1 input { 2 color: rgba(255, 255, 255, .7); 3 border: 0; 4 border-bottom: 0.25vmax solid #7e1221; 5 background: transparent; 6 width: 25vmax; 7 text-align: center; 8 font-size: 1vmax; 9 font-family: Tomorrow, -apple-system, sans-serif; 10 } 11 12 .smallInput { 13 width: 2.5vmax; 14 } 15 16 .columnButton { 17 background: #ac1a2d; 18 color: rgba(255, 255, 255, .7); 19 font-family: Tomorrow, -apple-system, sans-serif; 20 width: 30vmax; 21 height: 5vmax; 22 margin-top: 1vmax; 23 margin-left: 1vmax; 24 margin-right: 1vmax; 25 font-size: 2vmax; 26 text-align: center; 27 border-radius: 1vmax; 28 display: flex; 29 flex-direction: column; 30 justify-content: space-evenly; 31 align-items: center; 32 } 33 34 .disabled { 35 background: #7e1221; 36 color: rgba(255, 255, 255, .7); 37 font-family: Tomorrow, -apple-system, sans-serif; 38 width: 30vmax; 39 height: 5vmax; 40 margin-top: 1vmax; 41 margin-left: 1vmax; 42 margin-right: 1vmax; 43 font-size: 2vmax; 44 text-align: center; 45 border-radius: 1vmax; 46 display: flex; 47 flex-direction: column; 48 justify-content: space-evenly; 49 align-items: center; 50 } 51 52 .rowButton { 53 background: #ac1a2d; 54 color: rgba(255, 255, 255, .7); 55 font-family: Tomorrow, -apple-system, sans-serif; 56 width: 30vmax; 57 height: 5vmax; 58 margin-top: 1vmax; 59 margin-left: 1vmax; 60 margin-right: 1vmax; 61 font-size: 2vmax; 62 text-align: center; 63 border-radius: 1vmax; 64 display: flex; 65 flex-direction: row; 66 justify-content: space-evenly; 67 align-items: center; 68 } 69 70 .transparentButton { 71 background: transparent; 72 color: rgba(255, 255, 255, .7); 73 font-family: Tomorrow, -apple-system, sans-serif; 74 border: 0; 75 font-size: 4vmax; 76 }