15 lines
303 B
CSS
15 lines
303 B
CSS
|
|
.main.term {
|
||
|
|
/* Add some padding or margins as needed for aesthetics */
|
||
|
|
padding: 20px;
|
||
|
|
box-sizing: border-box; /* Includes padding and border in the element's total width and height */
|
||
|
|
}
|
||
|
|
|
||
|
|
.main .term:nth-child(1) {
|
||
|
|
width: 70%;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.main .term:nth-child(2) {
|
||
|
|
width: 30%;
|
||
|
|
}
|