This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed indentation from space to tabs, as the tab width can be confi…
…gured to the own preference
- Loading branch information
Showing
7 changed files
with
220 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ root = true | |
|
||
[*] | ||
charset = utf-8 | ||
indent_style = tab | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
.title-header-earning { | ||
background-image: linear-gradient(to bottom, #00AA00, #5cb85c);/*see bg-success*/ | ||
color: rgba(255, 255, 255, .9); | ||
padding: 12px; | ||
background-image: linear-gradient(to bottom, #00AA00, #5cb85c);/*see bg-success*/ | ||
color: rgba(255, 255, 255, .9); | ||
padding: 12px; | ||
} | ||
.title-header-expense { | ||
background-image: linear-gradient(to bottom, #CC0000, #d9534f);/*see bg-danger*/ | ||
color: rgba(255, 255, 255, .9); | ||
padding: 12px; | ||
background-image: linear-gradient(to bottom, #CC0000, #d9534f);/*see bg-danger*/ | ||
color: rgba(255, 255, 255, .9); | ||
padding: 12px; | ||
} | ||
|
||
.content { | ||
margin: 24px 0px; | ||
margin: 24px 0px; | ||
} | ||
|
||
form .row label { | ||
background: magenta; | ||
background: magenta; | ||
} | ||
|
||
form row input { | ||
background: cyan; | ||
background: cyan; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,106 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>New asset • Haushaltsbuch</title> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="index.css" /> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="title-header-earning"> | ||
<div class="container"> | ||
<h1>Add new earning</h1> | ||
</div> | ||
</div> | ||
<div class="title-header-expense"> | ||
<div class="container"> | ||
<h1>Add new expense</h1> | ||
</div> | ||
</div> | ||
<div class="content"> | ||
<div class="container"> | ||
<form> | ||
<div class="form-group"> | ||
<label for="purchase-date"> | ||
Kaufdatum: | ||
</label> | ||
<input id="purchase-date" | ||
type="date" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div class="form-group"> | ||
<!-- <input | ||
type="checkbox" | ||
/> --> | ||
<label for="operation-date"> | ||
Buchungsdatum: | ||
</label> | ||
<input id="operation-date" | ||
type="date" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div class="from-group"> | ||
<label for="name"> | ||
Name: | ||
</label> | ||
<input id="name" | ||
type="text" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div class="form-group"> | ||
<label for="price"> | ||
Preis: | ||
</label> | ||
<input id="price" | ||
type="number" | ||
step="0.01" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div id="purchasers" | ||
/> | ||
<div id="retailers" | ||
/> | ||
<div id="categories" | ||
/> | ||
<div class="checkbox"> | ||
<label> | ||
<input id="onSale" | ||
type="checkbox" | ||
value="" | ||
> | ||
Im Angebot? | ||
</label> | ||
</div> | ||
<div class="form-group"> | ||
<label for="comment"> | ||
Kommentar: | ||
</label> | ||
<textarea id="comment" | ||
rows="3" | ||
class="form-control" | ||
></textarea> | ||
</div> | ||
<div class="row"> | ||
<button id="add-asset" | ||
class="btn btn-primary col-md-6"> | ||
<i class="glyphicon glyphicon-plus"></i> | ||
Hinzufügen | ||
</button> | ||
<a | ||
href="../../index.html" | ||
class="btn btn-danger col-md-6"> | ||
<i class="glyphicon glyphicon-remove"></i> | ||
Abbrechen | ||
</a> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>New asset • Haushaltsbuch</title> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="index.css" /> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="title-header-earning"> | ||
<div class="container"> | ||
<h1>Add new earning</h1> | ||
</div> | ||
</div> | ||
<div class="title-header-expense"> | ||
<div class="container"> | ||
<h1>Add new expense</h1> | ||
</div> | ||
</div> | ||
<div class="content"> | ||
<div class="container"> | ||
<form> | ||
<div class="form-group"> | ||
<label for="purchase-date"> | ||
Kaufdatum: | ||
</label> | ||
<input id="purchase-date" | ||
type="date" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div class="form-group"> | ||
<!-- <input | ||
type="checkbox" | ||
/> --> | ||
<label for="operation-date"> | ||
Buchungsdatum: | ||
</label> | ||
<input id="operation-date" | ||
type="date" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div class="from-group"> | ||
<label for="name"> | ||
Name: | ||
</label> | ||
<input id="name" | ||
type="text" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div class="form-group"> | ||
<label for="price"> | ||
Preis: | ||
</label> | ||
<input id="price" | ||
type="number" | ||
step="0.01" | ||
class="form-control" | ||
/> | ||
</div> | ||
<div id="purchasers" | ||
/> | ||
<div id="retailers" | ||
/> | ||
<div id="categories" | ||
/> | ||
<div class="checkbox"> | ||
<label> | ||
<input id="onSale" | ||
type="checkbox" | ||
value="" | ||
> | ||
Im Angebot? | ||
</label> | ||
</div> | ||
<div class="form-group"> | ||
<label for="comment"> | ||
Kommentar: | ||
</label> | ||
<textarea id="comment" | ||
rows="3" | ||
class="form-control" | ||
></textarea> | ||
</div> | ||
<div class="row"> | ||
<button id="add-asset" | ||
class="btn btn-primary col-md-6"> | ||
<i class="glyphicon glyphicon-plus"></i> | ||
Hinzufügen | ||
</button> | ||
<a | ||
href="../../index.html" | ||
class="btn btn-danger col-md-6"> | ||
<i class="glyphicon glyphicon-remove"></i> | ||
Abbrechen | ||
</a> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
.title-header { | ||
background-image: linear-gradient(to bottom, #00AA00, #5cb85c);/*see bg-info*/ | ||
color: rgba(255, 255, 255, .9); | ||
margin-bottom: 24px; | ||
padding: 24px; | ||
background-image: linear-gradient(to bottom, #00AA00, #5cb85c);/*see bg-info*/ | ||
color: rgba(255, 255, 255, .9); | ||
margin-bottom: 24px; | ||
padding: 24px; | ||
} | ||
|
||
|
||
.content { | ||
margin: 24px 0px; | ||
margin: 24px 0px; | ||
} | ||
|
||
i.glyphicon { | ||
font-size: 48px; | ||
font-size: 48px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Start • Haushaltsbuch</title> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="index.css" /> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="title-header"> | ||
<div class="container"> | ||
<h1>Haushaltsbuch</h1> | ||
<p>Willkommen.</p> | ||
</div> | ||
</div> | ||
<div class="content"> | ||
<div class="container"> | ||
<a | ||
href="assets/new/index.html" | ||
class="btn btn-primary col-md-3"> | ||
<i class="glyphicon glyphicon-euro"></i> | ||
<p>Einnahme/Ausgabe hinzufügen</p> | ||
</a> | ||
<a | ||
href="persons/new/index.html" | ||
class="btn btn-default col-md-3"> | ||
<i class="glyphicon glyphicon-user"></i> | ||
<p>Person hinzufügen</p> | ||
</a> | ||
<a | ||
href="retailers/new/index.html" | ||
class="btn btn-default col-md-3"> | ||
<i class="glyphicon glyphicon-briefcase"></i> | ||
<p>Händler hinzufügen</p> | ||
</a> | ||
</div> | ||
</div> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Start • Haushaltsbuch</title> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="index.css" /> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="title-header"> | ||
<div class="container"> | ||
<h1>Haushaltsbuch</h1> | ||
<p>Willkommen.</p> | ||
</div> | ||
</div> | ||
<div class="content"> | ||
<div class="container"> | ||
<a | ||
href="assets/new/index.html" | ||
class="btn btn-primary col-md-3"> | ||
<i class="glyphicon glyphicon-euro"></i> | ||
<p>Einnahme/Ausgabe hinzufügen</p> | ||
</a> | ||
<a | ||
href="persons/new/index.html" | ||
class="btn btn-default col-md-3"> | ||
<i class="glyphicon glyphicon-user"></i> | ||
<p>Person hinzufügen</p> | ||
</a> | ||
<a | ||
href="retailers/new/index.html" | ||
class="btn btn-default col-md-3"> | ||
<i class="glyphicon glyphicon-briefcase"></i> | ||
<p>Händler hinzufügen</p> | ||
</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
.title-header { | ||
background-image: linear-gradient(to bottom, #0000FF, #5bc0de);/*see bg-info*/ | ||
color: rgba(255, 255, 255, .9); | ||
margin-bottom: 24px; | ||
padding: 24px; | ||
background-image: linear-gradient(to bottom, #0000FF, #5bc0de);/*see bg-info*/ | ||
color: rgba(255, 255, 255, .9); | ||
margin-bottom: 24px; | ||
padding: 24px; | ||
} | ||
|
||
|
||
.content { | ||
margin: 24px 0px; | ||
margin: 24px 0px; | ||
} | ||
|
||
.content i.glyphicon-user { | ||
font-size: 128px; | ||
font-size: 128px; | ||
} |
Oops, something went wrong.