Spaces:
Running
Running
File size: 834 Bytes
ee58747 e0acf11 ee58747 e0acf11 8e690e9 e0acf11 ee58747 e0acf11 1615f43 c17ad53 e0acf11 ee58747 e0acf11 8e690e9 e0acf11 ee58747 e0acf11 ee58747 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
/* Parent Container */
.parent {
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
height: 100vh; /* Full height of the screen */
background-color: lightgray;
}
/* Child Box */
.container {
width: 300px;
height: 450px;
border: 5px solid black; /* Border */
background-color: white;
border-radius: 10px; /* Optional */
}
.txt {
margin: 10px;
width: 200px;
height: 50px;
font-size: 40px;
text-align: right;
border: 5px solid rgb(28, 27, 27);
}
.box {
width: 50px;
height: 50px;
margin: 10px;
font-size: 30px;
border: 5px ridge rgb(28, 27, 27);
border-radius: 5px;
}
#op {
background-color: #e7ef0e;
}
#op:hover {
background-color: aliceblue;
}
h1 {
text-align: center;
}
|