snort/src/Pages/new/index.css

162 lines
2.4 KiB
CSS
Raw Normal View History

2023-02-09 11:24:15 +00:00
.new-user p {
color: var(--font-secondary-color);
}
.new-user li {
color: var(--font-secondary-color);
}
.new-user p > a {
color: var(--highlight);
}
.new-user li > a {
color: var(--highlight);
}
.new-user h1 {
color: var(--font-color);
font-weight: 700;
font-size: 32px;
line-height: 39px;
}
.new-user h2 {
color: var(--font-color);
font-weight: 600;
font-size: 16px;
line-height: 19px;
}
.new-user h3 {
color: var(--font-color);
font-weight: 700;
font-size: 21px;
line-height: 25px;
}
.new-user h4 {
color: var(--font-secondary-color);
font-weight: 600;
font-size: 12px;
line-height: 19px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.progress-bar {
width: 100%;
height: 7px;
background: var(--gray-secondary);
border-radius: 53px;
}
.progress-bar .progress {
height: 7px;
background: var(--snort-gradient);
border-radius: 53px;
}
.progress.progress-first {
width: 20%;
}
.progress.progress-second {
width: 50%;
}
.progress.progress-third {
width: 75%;
}
.progress.progress-last {
width: 95%;
}
.new-user .next-actions {
margin-top: 32px;
margin-bottom: 64px;
width: 100%;
display: flex;
justify-content: flex-end;
}
.new-user .next-actions button:not(:last-child) {
margin-right: 12px;
}
.new-user > .copy {
padding: 12px 16px;
border: 2px dashed #222222;
border-radius: 16px;
}
.light .new-user > .copy {
border: 2px dashed #aaaaaa;
}
.new-user > .copy .body {
font-size: 16px;
}
.new-user > .copy .icon {
margin-left: auto;
}
.new-user > .copy .icon svg {
width: 16px;
height: 16px;
}
.new-user .faq {
position: relative;
}
.new-user .faq h3,
.new-user .faq svg {
cursor: pointer;
}
.new-user .faq .collapse-icon {
position: absolute;
top: 0;
right: 0;
transition: transform 300ms ease-in-out;
}
.new-user .faq .collapse-icon.flip {
transform: rotate(180deg);
transition: transform 300ms ease-in-out;
}
.new-user input {
width: 100%;
max-width: 568px;
background: #222;
border: none;
}
.light .new-user input {
background: none;
}
.new-user .warning {
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #fc6e1e;
}
.profile-preview-nip {
padding: 12px 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
}
.light .profile-preview-nip {
border: 1px solid rgba(0, 0, 0, 0.1);
}
.new-user .nip-container input[type="text"] {
width: 166px;
}