@sberid/js-sdk
Version:
Javascript SDK для партнеров Сбер ID, упрощающая подключение SberbankID на сайте.
55 lines (49 loc) • 1.1 kB
CSS
:root {
--sbid-mobile-width: 768px;
}
.sbid-notification-banner {
position: fixed;
background: #fff;
border: 1px solid #e3e3e3;
box-shadow: 0px 10px 24px rgba(45, 73, 88, 0.15);
border-radius: 5px;
padding: 20px;
display: none;
width: auto;
box-sizing: border-box;
flex-direction: column;
font-family: SB Sans, Roboto, sans-serif;
min-width: 320px;
opacity: 0;
}
@media (max-width: var(--sbid-mobile-width)) {
.sbid-notification-banner {
border-radius: 0;
width: 100%;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
}
.sbid-notification-banner__label {
font-size: 15px;
line-height: 18px;
color: #767676;
margin-bottom: 16px;
font-weight: 600;
}
.sbid-notification-banner__close {
font-size: 0;
line-height: 12px;
color: #767676;
position: absolute;
right: 10px;
top: 10px;
cursor: pointer;
display: flex;
padding: 10px;
}
.sbid-notification-banner--show {
display: flex;
}