Compare commits
5 Commits
cbcfda3726
...
d554355f9c
Author | SHA1 | Date | |
---|---|---|---|
d554355f9c | |||
5c9a52b01c | |||
7bcb08a4ae | |||
5009b778f7 | |||
f9fd9d68a7 |
@ -476,8 +476,14 @@ body {
|
|||||||
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link:hover {
|
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link:hover {
|
||||||
background-color: inherit; }
|
background-color: inherit; }
|
||||||
|
|
||||||
|
.LP-Form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center; }
|
||||||
.LP-Form .LP-Form__Fieldset {
|
.LP-Form .LP-Form__Fieldset {
|
||||||
border: none; }
|
border: none;
|
||||||
|
max-width: 1200px;
|
||||||
|
min-width: 750px; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Legend {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Legend {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -488,16 +494,16 @@ body {
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between; }
|
justify-content: space-between; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field {
|
||||||
flex: 3 1 100px;
|
flex: 3 2 100px;
|
||||||
padding: 6px 15px; }
|
padding: 6px 15px; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wider {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wider {
|
||||||
flex: 5 1; }
|
flex: 5 2; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wide {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wide {
|
||||||
flex: 4 1; }
|
flex: 4 2; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrow {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrow {
|
||||||
flex: 2 0; }
|
flex: 2 1; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrower {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrower {
|
||||||
flex: 1 0; }
|
flex: 1 2; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition--buttons {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition--buttons {
|
||||||
justify-content: flex-end; }
|
justify-content: flex-end; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Button {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Button {
|
||||||
@ -510,6 +516,10 @@ body {
|
|||||||
font-family: Montserrat, Helvetica, sans-serif;
|
font-family: Montserrat, Helvetica, sans-serif;
|
||||||
color: #565656; }
|
color: #565656; }
|
||||||
|
|
||||||
|
@media (max-width: 750px) {
|
||||||
|
.LP-Form .LP-Form__Fieldset {
|
||||||
|
min-width: unset; } }
|
||||||
|
|
||||||
@media (max-width: 650px) {
|
@media (max-width: 650px) {
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition--breakable {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition--breakable {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -38,11 +38,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="LP-Form__Composition">
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
||||||
<a href="{% url 'place_list' %}">
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
||||||
|
<button class="LP-Button">Create</button>
|
||||||
|
</div>
|
||||||
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
||||||
|
<a class="LP-Link" href="{% url 'place_list' %}">
|
||||||
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
|
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
|
||||||
</a>
|
</a>
|
||||||
<input type="submit" class="LP-Button" value="Abschicken"/>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
@ -38,11 +38,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="LP-Form__Composition">
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
||||||
<a href="{% url 'place_detail' pk=place.pk %}">
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
||||||
|
<button class="LP-Button">Update</button>
|
||||||
|
</div>
|
||||||
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
||||||
|
<a class="LP-Link" href="{% url 'place_detail' pk=place.pk %}">
|
||||||
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
|
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
|
||||||
</a>
|
</a>
|
||||||
<input type="submit" class="LP-Button" value="Submit"/>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
@ -18,8 +18,11 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="LP-Form__Composition">
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
||||||
<input type="submit" class="LP-Button" value="Login"/>
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
||||||
|
<button class="LP-Button">Login</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<form class="LP-Form" method="POST">
|
<form class="LP-Form" method="POST">
|
||||||
<fieldset class="LP-Form__Fieldset">
|
<fieldset class="LP-Form__Fieldset">
|
||||||
<legend class="LP-Form__Legend">Registrierung</legend>
|
<legend class="LP-Form__Legend">Registration</legend>
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
||||||
<div class="LP-Form__Field">
|
<div class="LP-Form__Field">
|
||||||
@ -35,8 +35,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="LP-Form__Composition">
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
||||||
<input type="submit" class="LP-Button" value="Registrieren"/>
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
||||||
|
<button class="LP-Button">Sign up</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user