header width

This commit is contained in:
Tykayn 2022-02-15 16:12:01 +01:00 committed by tykayn
parent d4e856a15f
commit 69e028292f
9 changed files with 24 additions and 18 deletions

View File

@ -14,15 +14,6 @@
</a>
</div>
<div class="pull-right right-end-bar">
<!-- <button-->
<!-- *ngIf="linkToHome"-->
<!-- class="has-no-border nav-button cancel-button "-->
<!-- [routerLink]="'/'"-->
<!-- id="display_cancel_popup_button"-->
<!-- aria-haspopup="dialog"-->
<!-- >-->
<!-- {{ 'nav.leave' | translate }} <i class="fa fa-times"></i>-->
<!-- </button>-->
<app-language-selector class=""></app-language-selector>
</div>
</div>

View File

@ -1,3 +1,5 @@
@import '../../../../../../styles/variables';
.advanced-config {
margin-bottom: 2em;
}

View File

@ -5,7 +5,7 @@
<h2 class="title is-2">
{{ 'resume.title' | translate }}
</h2>
<p class="helper">
<p class="helper description">
{{ 'resume.description' | translate }}
</p>
<div class="resume">

View File

@ -15,7 +15,7 @@
{{ 'validation.required' | translate }}
</span>
</label>
<p>
<p class="description">
{{ 'owner.email_description' | translate }}
</p>
<input class="input" type="email" id="email" formControlName="creatorEmail" />

View File

@ -0,0 +1,3 @@
.description {
font-size: 12px;
}

View File

@ -16,7 +16,9 @@
label {
color: $font_color;
font-wieght: 600;
font-weight: bold;
font-size: 14px;
line-height: 16px;
&[for] {
cursor: pointer;

View File

@ -335,12 +335,12 @@ label {
font-family: $default_font;
color: $font_color;
font-weight: bold;
font-size: 0.85rem;
font-size: 14px;
line-height: 1rem;
margin-bottom: 0.5rem;
display: block;
@extend .clickable;
max-width: 100%;
@extend .clickable;
}
.striked-background {

View File

@ -16,7 +16,11 @@ body {
form {
margin: 0 !important;
}
.description {
font-size: 12px;
color: $font_color_light !important;
margin-bottom: 0.5rem;
}
main {
min-height: 60vh;
}
@ -30,10 +34,13 @@ main {
padding: 1em;
}
.footer {
padding: 0;
}
.main-footer {
background: $primary-color;
color: $white;
padding-top: 2rem;
.title {
color: $white;
}
@ -75,7 +82,6 @@ main {
.contained-desktop,
.stuff {
display: block;
width: 100%;
max-width: $widescreen-width-main-column;
margin: 0 auto;
}

View File

@ -31,6 +31,7 @@ $d-blue30: #f6f5fd; // bleu 300
$d-rule: #e2e0fa; // bleu 100
$d-neutral: #b5b5c6;
$d-border: #4e4c59;
$d-grey: #767486;
$d-black: #383838;
$d-alt: #a9607f;
@ -50,6 +51,7 @@ $primary: $d-primary;
$secondary_color: $d-primary-intense;
$bg-grey: $d-blue30;
$font_color: $d-black;
$font_color_light: $d-grey;
$logo_color: $d-primary;
$logo_color_2: $d-primary-intense;
$legend_color: $d-info-text;