Skip to content
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.

Commit

Permalink
changed indentation from space to tabs, as the tab width can be confi…
Browse files Browse the repository at this point in the history
…gured to the own preference
  • Loading branch information
IanStorm committed Dec 24, 2017
1 parent 1361c2d commit 6099b1f
Show file tree
Hide file tree
Showing 7 changed files with 220 additions and 219 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ root = true

[*]
charset = utf-8
indent_style = tab
insert_final_newline = true
18 changes: 9 additions & 9 deletions src/Clients/HTML/assets/new/index.css
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;
}
206 changes: 103 additions & 103 deletions src/Clients/HTML/assets/new/index.html
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 &#149; 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 &#149; 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>
12 changes: 6 additions & 6 deletions src/Clients/HTML/index.css
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;
}
76 changes: 38 additions & 38 deletions src/Clients/HTML/index.html
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Start &#149; 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 &#149; 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>
12 changes: 6 additions & 6 deletions src/Clients/HTML/persons/new/index.css
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;
}
Loading

0 comments on commit 6099b1f

Please sign in to comment.