42 lines
603 B
CSS
42 lines
603 B
CSS
.ripcrypt {
|
|
.window-content {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.HeroSummaryCardV1 {
|
|
/* height: 270px; */
|
|
width: 680px;
|
|
--col-gap: 2px;
|
|
}
|
|
|
|
input {
|
|
all: revert;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
outline: none;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
position: relative;
|
|
|
|
&[type="text"] {
|
|
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;
|
|
}
|
|
}
|