153 lines
2.7 KiB
SCSS
Raw Normal View History

.popUpWarningHelper { /* stylelint-disable */
width: 37.5rem!important;
2018-01-16 17:35:45 +01:00
-webkit-font-smoothing: antialiased !important;
}
.popUpWarningHeader {
2018-01-16 17:35:45 +01:00
margin-left: 30px;
margin-right: 30px;
padding-bottom: 11px !important;
border-bottom: 1px solid #F6F6F6;
> h5 {
width: 100%;
text-align: center;
font-family: Lato;
font-weight: bold!important;
font-size: 1.8rem!important;
}
2018-01-16 17:35:45 +01:00
> button {
2018-01-16 17:35:45 +01:00
color: #C3C5C8;
opacity: 1;
font-size: 1.8rem;
font-weight: 100;
z-index: 999;
cursor: pointer;
2018-01-16 17:35:45 +01:00
> span {
display: none;
}
&:hover, &:focus {
color: #C3C5C8;
opacity: 1;
outline: 0!important;
}
&:before {
content: '\F00d';
position: absolute;
top: 14px;
right: 14px;
font-family: 'FontAwesome';
font-weight: 400;
font-size: 1.2rem;
}
}
}
2018-01-16 17:35:45 +01:00
.modalPosition {
max-width: 37.5rem !important;
> div {
2018-01-16 17:35:45 +01:00
width: 37.5rem;
padding: 0 !important;
border:none;
border-radius: 2px;
}
}
2018-01-16 17:35:45 +01:00
.modalBodyContainerHelper {
2018-01-16 17:35:45 +01:00
padding: .1rem;
color: #F64D0A;
text-align: center;
font-family: Lato;
2018-01-16 17:35:45 +01:00
font-size: 1.3rem;
> img {
width: 2.5rem;
margin-bottom: 1.5rem;
}
2018-01-16 17:35:45 +01:00
> p {
line-height: 1.8rem;
}
}
2018-01-16 17:35:45 +01:00
.modalBodyHelper {
2018-01-16 17:35:45 +01:00
padding: 16px 30px 15px 30px !important;
}
.popUpWarningButtonContainer {
display: flex;
2018-01-16 17:35:45 +01:00
width: 100%;
margin-top: 37px;
justify-content: space-between;
2018-01-16 17:35:45 +01:00
> button {
2018-01-16 17:35:45 +01:00
position: relative;
height: 3rem;
width: 15rem;
border-radius: 0.3rem;
2017-10-16 14:30:26 +02:00
background-color: transparent;
2018-01-16 17:35:45 +01:00
text-transform: capitalize;
font-family: Lato;
2018-01-16 17:35:45 +01:00
cursor: pointer;
> i {
margin-right: 1.3rem;
}
2018-01-16 17:35:45 +01:00
&:focus {
outline: 0;
}
&:hover {
2018-01-16 17:35:45 +01:00
&::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 0.3rem;
background: #FFFFFF;
opacity: 0.1;
}
}
}
}
2018-01-16 17:35:45 +01:00
.primary {
2018-01-16 17:35:45 +01:00
border: none !important;
background: linear-gradient(315deg, #0097F6 0%, #005EEA 100%);
color: white !important;
2018-01-16 17:35:45 +01:00
font-weight: 500;
2017-10-16 14:30:26 +02:00
&:active, &:focus, &:hover {
border: none;
2018-01-16 17:35:45 +01:00
background-color: transparent;
background: linear-gradient(315deg, #0097F6 0%, #005EEA 100%);
box-shadow: inset 1px 1px 3px rgba(0,0,0,.15);
}
-webkit-font-smoothing: antialiased;
}
2018-01-16 17:35:45 +01:00
.secondary {
position: relative;
2018-01-16 17:35:45 +01:00
border: 0.1rem solid #F64D0A !important;
border-radius: 3px;
2018-01-16 17:35:45 +01:00
color: #F64D0A !important;
overflow: hidden;
2018-01-16 17:35:45 +01:00
&:active {
2018-01-16 17:35:45 +01:00
border: 0.15rem solid #F64D0A;
}
&:focus, &:hover {
border: 0.1rem solid #F64D0A;
background-color: transparent !important;
color: #F64D0A;
}
}