mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
header width
This commit is contained in:
parent
d4e856a15f
commit
69e028292f
@ -14,15 +14,6 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-right right-end-bar">
|
<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>
|
<app-language-selector class=""></app-language-selector>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
@import '../../../../../../styles/variables';
|
||||||
|
|
||||||
.advanced-config {
|
.advanced-config {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<h2 class="title is-2">
|
<h2 class="title is-2">
|
||||||
{{ 'resume.title' | translate }}
|
{{ 'resume.title' | translate }}
|
||||||
</h2>
|
</h2>
|
||||||
<p class="helper">
|
<p class="helper description">
|
||||||
{{ 'resume.description' | translate }}
|
{{ 'resume.description' | translate }}
|
||||||
</p>
|
</p>
|
||||||
<div class="resume">
|
<div class="resume">
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
{{ 'validation.required' | translate }}
|
{{ 'validation.required' | translate }}
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<p>
|
<p class="description">
|
||||||
{{ 'owner.email_description' | translate }}
|
{{ 'owner.email_description' | translate }}
|
||||||
</p>
|
</p>
|
||||||
<input class="input" type="email" id="email" formControlName="creatorEmail" />
|
<input class="input" type="email" id="email" formControlName="creatorEmail" />
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
.description {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
@ -16,7 +16,9 @@
|
|||||||
|
|
||||||
label {
|
label {
|
||||||
color: $font_color;
|
color: $font_color;
|
||||||
font-wieght: 600;
|
font-weight: bold;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
|
||||||
&[for] {
|
&[for] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -335,12 +335,12 @@ label {
|
|||||||
font-family: $default_font;
|
font-family: $default_font;
|
||||||
color: $font_color;
|
color: $font_color;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 0.85rem;
|
font-size: 14px;
|
||||||
line-height: 1rem;
|
line-height: 1rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
display: block;
|
display: block;
|
||||||
@extend .clickable;
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@extend .clickable;
|
||||||
}
|
}
|
||||||
|
|
||||||
.striked-background {
|
.striked-background {
|
||||||
|
@ -16,7 +16,11 @@ body {
|
|||||||
form {
|
form {
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
.description {
|
||||||
|
font-size: 12px;
|
||||||
|
color: $font_color_light !important;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
main {
|
main {
|
||||||
min-height: 60vh;
|
min-height: 60vh;
|
||||||
}
|
}
|
||||||
@ -30,10 +34,13 @@ main {
|
|||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.main-footer {
|
.main-footer {
|
||||||
background: $primary-color;
|
background: $primary-color;
|
||||||
color: $white;
|
color: $white;
|
||||||
|
padding-top: 2rem;
|
||||||
.title {
|
.title {
|
||||||
color: $white;
|
color: $white;
|
||||||
}
|
}
|
||||||
@ -75,7 +82,6 @@ main {
|
|||||||
.contained-desktop,
|
.contained-desktop,
|
||||||
.stuff {
|
.stuff {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
|
||||||
max-width: $widescreen-width-main-column;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,7 @@ $d-blue30: #f6f5fd; // bleu 300
|
|||||||
$d-rule: #e2e0fa; // bleu 100
|
$d-rule: #e2e0fa; // bleu 100
|
||||||
$d-neutral: #b5b5c6;
|
$d-neutral: #b5b5c6;
|
||||||
$d-border: #4e4c59;
|
$d-border: #4e4c59;
|
||||||
|
$d-grey: #767486;
|
||||||
$d-black: #383838;
|
$d-black: #383838;
|
||||||
$d-alt: #a9607f;
|
$d-alt: #a9607f;
|
||||||
|
|
||||||
@ -50,6 +51,7 @@ $primary: $d-primary;
|
|||||||
$secondary_color: $d-primary-intense;
|
$secondary_color: $d-primary-intense;
|
||||||
$bg-grey: $d-blue30;
|
$bg-grey: $d-blue30;
|
||||||
$font_color: $d-black;
|
$font_color: $d-black;
|
||||||
|
$font_color_light: $d-grey;
|
||||||
$logo_color: $d-primary;
|
$logo_color: $d-primary;
|
||||||
$logo_color_2: $d-primary-intense;
|
$logo_color_2: $d-primary-intense;
|
||||||
$legend_color: $d-info-text;
|
$legend_color: $d-info-text;
|
||||||
|
Loading…
Reference in New Issue
Block a user