Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion webui-src/app/scss/pages/_home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@

.logo {
@include flex($justify: center, $align: center);

& img {
width: 90px;
}

.retroshareText {
@include flex(column, $align: center);

& .retrotext {
font-size: 36px;
font-weight: 600;
line-height: 1.125;

& > span {
color: $primary-retro-color;
}
}

& > b {
font-size: 14px;
line-height: 1;
Expand All @@ -28,43 +33,50 @@

.certificate {
@include flex(column, $gap: 4rem);

&__heading {
text-align: center;

& > h1 {
margin-bottom: 1rem;
}
}

&__content {
@include flex(column, $gap: 2rem);
padding: 2rem;
text-align: center;
border: 1.5px solid transparentize($primary-retro-color, 0.8);
border-radius: 6px;
box-shadow: 0px 0px 8px 2px transparentize($dark-color, 0.95);

.rsId > p {
margin-bottom: 0.5rem;
color: $primary-retro-color;
}

.retroshareID {
padding: 0.25rem;
@include flex($align: center);
justify-self: start;
font-size: 1.25rem;
border-radius: 4px;
background: transparentize($dark-color, 0.95);

& .textArea {
padding: 0;
width: 100%;
min-height: 75px;
font-size: 1rem;
font-family: monospace;
background: transparent;
border: none;
resize: none;
}

& i {
color: $primary-retro-color;
}

& > i {
margin: 0 0.5rem;
cursor: pointer;
Expand All @@ -79,19 +91,23 @@
border: 1px solid transparentize($dark-color, 0.5);
width: fit-content;
cursor: pointer;

&-container {
display: grid;
place-items: center;
}

&:hover {
background: $light-color;
border: 1px solid $dark-color;
}

& > i {
font-size: 1.2rem;
color: green;
}
}

.add-friend > h6,
.webhelp-container > h6 {
font-weight: normal;
Expand Down
Loading