2022-03-29 21:02:48 +02:00
|
|
|
.generated-wrapper {
|
2021-09-30 00:06:20 +02:00
|
|
|
min-width: 0;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.password-row {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.password-letter {
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("pwLetter");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.password-number {
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("pwNumber");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.password-special {
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("pwSpecial");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
app-vault-groupings,
|
|
|
|
app-org-vault-groupings,
|
|
|
|
.groupings {
|
|
|
|
.card {
|
|
|
|
#search {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
@include themify($themes) {
|
|
|
|
background-color: themed("inputBackgroundColor");
|
|
|
|
border-color: themed("inputBorderColor");
|
|
|
|
color: themed("inputTextColor");
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
|
2021-09-30 00:06:20 +02:00
|
|
|
&::placeholder {
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("inputPlaceholderColor");
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-weight: normal;
|
|
|
|
text-transform: uppercase;
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("textMuted");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-body a {
|
|
|
|
@include themify($themes) {
|
2022-01-26 05:54:15 +01:00
|
|
|
color: themed("textHeadingColor");
|
2021-09-30 00:06:20 +02:00
|
|
|
font-weight: themed("linkWeight");
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
&.text-muted {
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("iconHover") !important;
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
|
|
|
|
.show-active {
|
|
|
|
display: none;
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
|
|
|
|
2021-09-30 00:06:20 +02:00
|
|
|
li {
|
2022-01-27 18:25:58 +01:00
|
|
|
> .bwi,
|
|
|
|
> div > .bwi {
|
2021-09-30 00:06:20 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
|
|
|
|
li.active {
|
|
|
|
> .show-active,
|
|
|
|
> div .show-active {
|
|
|
|
display: inline;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
|
|
|
|
2021-09-30 00:06:20 +02:00
|
|
|
li.active {
|
|
|
|
> a:first-of-type,
|
|
|
|
> div a:first-of-type {
|
|
|
|
font-weight: bold;
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("linkColor");
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
|
2022-01-27 18:25:58 +01:00
|
|
|
> .bwi,
|
|
|
|
> div > .bwi {
|
2021-09-30 00:06:20 +02:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("linkColor");
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
app-password-generator {
|
|
|
|
#lengthRange {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
|
2022-03-29 21:02:48 +02:00
|
|
|
.card-generated {
|
2021-09-30 00:06:20 +02:00
|
|
|
.card-body {
|
|
|
|
@include themify($themes) {
|
|
|
|
background: themed("foregroundColor");
|
|
|
|
}
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-family: $font-family-monospace;
|
|
|
|
font-size: $font-size-lg;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
app-password-generator-history {
|
|
|
|
.list-group-item {
|
|
|
|
line-height: 1;
|
|
|
|
@include themify($themes) {
|
|
|
|
background: themed("backgroundColor");
|
|
|
|
}
|
|
|
|
|
|
|
|
.password {
|
|
|
|
font-family: $font-family-monospace;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
app-import {
|
|
|
|
textarea {
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
app-avatar {
|
|
|
|
img {
|
|
|
|
@extend .rounded;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
app-user-billing {
|
|
|
|
.progress {
|
|
|
|
height: 20px;
|
2021-12-17 15:57:11 +01:00
|
|
|
|
2021-09-30 00:06:20 +02:00
|
|
|
.progress-bar {
|
|
|
|
min-width: 50px;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
|
|
|
|
2021-11-22 14:41:40 +01:00
|
|
|
app-sponsored-families {
|
|
|
|
.inset-list {
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-05 12:03:24 +02:00
|
|
|
/* Register Layout Page */
|
|
|
|
.layout {
|
2022-01-31 20:10:35 +01:00
|
|
|
&.default,
|
|
|
|
&.teams,
|
|
|
|
&.teams1,
|
|
|
|
&.teams2,
|
|
|
|
&.enterprise,
|
|
|
|
&.enterprise1,
|
|
|
|
&.enterprise2,
|
|
|
|
&.cnetcmpgnent,
|
|
|
|
&.cnetcmpgnteams,
|
|
|
|
&.cnetcmpgnind {
|
2021-10-05 12:03:24 +02:00
|
|
|
header {
|
|
|
|
background: #175ddc;
|
|
|
|
color: #ced4da;
|
2022-01-31 20:10:35 +01:00
|
|
|
height: 70px;
|
2021-12-17 15:57:11 +01:00
|
|
|
|
2021-10-05 12:03:24 +02:00
|
|
|
&:before {
|
|
|
|
background: #175ddc;
|
|
|
|
content: "";
|
2022-01-31 20:10:35 +01:00
|
|
|
height: 520px;
|
2021-10-05 12:03:24 +02:00
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
2022-01-31 20:10:35 +01:00
|
|
|
top: -80px;
|
2021-10-05 12:03:24 +02:00
|
|
|
transform: skewY(-3deg);
|
|
|
|
width: 100%;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
img.logo {
|
|
|
|
height: 57px;
|
|
|
|
margin: 12px 0 0;
|
|
|
|
max-width: 284px;
|
|
|
|
width: 284px;
|
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
|
|
|
|
2022-01-31 20:10:35 +01:00
|
|
|
h1 {
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 3.5rem;
|
|
|
|
margin: 50px 0 0;
|
|
|
|
}
|
|
|
|
|
2021-10-05 12:03:24 +02:00
|
|
|
h2 {
|
|
|
|
color: #ffffff;
|
2022-01-31 20:10:35 +01:00
|
|
|
font-size: 2rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
margin: 20px 0 140px;
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
|
|
|
|
p {
|
2022-01-31 20:10:35 +01:00
|
|
|
font-size: 2rem;
|
|
|
|
margin: 10px 0 70px 0;
|
2021-09-30 00:06:20 +02:00
|
|
|
|
2021-10-05 12:03:24 +02:00
|
|
|
&:before {
|
|
|
|
content: "/";
|
|
|
|
padding-right: 12px;
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
2021-10-05 12:03:24 +02:00
|
|
|
&:not(.highlight) {
|
2021-09-30 00:06:20 +02:00
|
|
|
&:before {
|
2021-10-05 12:03:24 +02:00
|
|
|
color: #1252a3;
|
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
|
2021-10-05 12:03:24 +02:00
|
|
|
b {
|
|
|
|
&:after {
|
|
|
|
content: "⟶";
|
|
|
|
font-size: 2rem;
|
|
|
|
padding-left: 6px;
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-31 20:10:35 +01:00
|
|
|
figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-12-17 15:57:11 +01:00
|
|
|
blockquote {
|
2021-10-05 12:03:24 +02:00
|
|
|
font-size: 1.4rem;
|
2022-01-31 20:10:35 +01:00
|
|
|
margin: 20px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.cnetcmpgnind {
|
|
|
|
p {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
margin: 10px 0 50px 0;
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|
2021-12-17 15:57:11 +01:00
|
|
|
}
|
2021-09-30 00:06:20 +02:00
|
|
|
}
|