|
|
|
@ -143,6 +143,7 @@ element.style { |
|
|
|
|
cursor: pointer; |
|
|
|
|
align-items: center; |
|
|
|
|
cursor: pointer; |
|
|
|
|
padding-top: 0.5rem; |
|
|
|
|
} |
|
|
|
|
.remix_ui_terminal_log:hover { |
|
|
|
|
opacity: 0.8; |
|
|
|
@ -202,12 +203,6 @@ element.style { |
|
|
|
|
table .active { |
|
|
|
|
transition: max-height 0.6s, padding 0.6s; |
|
|
|
|
} |
|
|
|
|
#txTable { |
|
|
|
|
margin-top: 1%; |
|
|
|
|
margin-bottom: 5%; |
|
|
|
|
align-self: center; |
|
|
|
|
width: 85%; |
|
|
|
|
} |
|
|
|
|
.remix_ui_terminal_tr, .remix_ui_terminal_td { |
|
|
|
|
padding: 4px; |
|
|
|
|
vertical-align: baseline; |
|
|
|
@ -231,62 +226,3 @@ element.style { |
|
|
|
|
.remix_ui_terminal_debug:hover { |
|
|
|
|
opacity: 0.8; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Style the accordion section */ |
|
|
|
|
.accordion__section { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Style the buttons that are used to open and close the accordion panel */ |
|
|
|
|
.accordion { |
|
|
|
|
background-color: #eee; |
|
|
|
|
color: #444; |
|
|
|
|
cursor: pointer; |
|
|
|
|
padding: 18px; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
border: none; |
|
|
|
|
outline: none; |
|
|
|
|
transition: background-color 0.6s ease; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */ |
|
|
|
|
/* .accordion:hover, |
|
|
|
|
.active { |
|
|
|
|
background-color: #ccc; |
|
|
|
|
} */ |
|
|
|
|
|
|
|
|
|
/* Style the accordion content title */ |
|
|
|
|
.accordion__title { |
|
|
|
|
font-family: "Open Sans", sans-serif; |
|
|
|
|
font-weight: 600; |
|
|
|
|
font-size: 14px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Style the accordion chevron icon */ |
|
|
|
|
.accordion__icon { |
|
|
|
|
margin-left: auto; |
|
|
|
|
transition: transform 0.6s ease; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Style to rotate icon when state is active */ |
|
|
|
|
.rotate { |
|
|
|
|
transform: rotate(90deg); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Style the accordion content panel. Note: hidden by default */ |
|
|
|
|
.accordion__content { |
|
|
|
|
background-color: white; |
|
|
|
|
overflow: hidden; |
|
|
|
|
transition: max-height 0.6s ease; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Style the accordion content text */ |
|
|
|
|
.accordion__text { |
|
|
|
|
font-family: "Open Sans", sans-serif; |
|
|
|
|
font-weight: 400; |
|
|
|
|
font-size: 14px; |
|
|
|
|
padding: 18px; |
|
|
|
|
} |
|
|
|
|