60 lines
866 B
CSS
60 lines
866 B
CSS
.ripcrypt {
|
|
.window-content {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.HeroSummaryCardV1 {
|
|
/* height: 270px; */
|
|
width: 680px;
|
|
--col-gap: 2px;
|
|
}
|
|
|
|
table {
|
|
all: revert;
|
|
box-sizing: border-box;
|
|
border-collapse: collapse;
|
|
|
|
thead, tbody, tr {
|
|
all: revert;
|
|
}
|
|
td, th {
|
|
all: revert;
|
|
padding: 2px 4px;
|
|
font-weight: initial;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
input {
|
|
all: revert;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
outline: none;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
position: relative;
|
|
background: none;
|
|
|
|
&[type="text"],
|
|
&[type="number"] {
|
|
border-bottom: 2px dashed purple;
|
|
}
|
|
}
|
|
|
|
select {
|
|
all: revert;
|
|
appearance: auto;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
outline: none;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
label, input, select {
|
|
cursor: pointer;
|
|
}
|
|
}
|