-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 512d5b9
Showing
3 changed files
with
167 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>gestion de budget</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="main-page"> | ||
<h1 class="main-title">gestion budget</h1> | ||
<header> | ||
<div class="budget"> | ||
<label for="label1">Budget</label> | ||
<p class="label1">5000</p> | ||
</div> | ||
<div class="budget"> | ||
<label for="label2">Depenses</label> | ||
<p class="label1">4000</p> | ||
</div> <div class="budget"> | ||
<label for="label1">soldes</label> | ||
<p class="label1">1000</p> | ||
</div> | ||
</header> | ||
<section> | ||
<div class="btn1"><button>Ajouterdepense</button></div> | ||
<br> | ||
<u><h5 class="liste1">Liste des depense</h5></u> | ||
<br> | ||
<br> | ||
<div> | ||
<table class="table1"> | ||
<tr> | ||
<th>Titre</th> | ||
<th>Montant</th> | ||
<th>Action</th> | ||
</tr> | ||
<tr> | ||
<td>Nourriture</td> | ||
<td>3500</td> | ||
<td class="modifier"><button>Modifier</button> | ||
<button>Supprimer</button> | ||
|
||
</td> | ||
|
||
</tr> | ||
<tr> | ||
<td>Cafe</td> | ||
<td>500</td> | ||
<td class="rename"><button> Modifier</button> | ||
<button>Supprimer</button> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</section> | ||
<section> | ||
<br> | ||
<div class="btn1"><button>Ajouter revenu</button></div> | ||
<br> | ||
<u><h5 class="liste1">Liste des revenues</h5></u> | ||
|
||
<br> | ||
<div> | ||
<table class="table1"> | ||
<tr> | ||
<th>Titre</th> | ||
<th>Montant</th> | ||
<th>Action</th> | ||
</tr> | ||
<tr> | ||
<td>Salaire</td> | ||
<td>300000</td> | ||
<td class="delet"><button>Modifier</button> | ||
<button>Supprimer</button> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Bonus</td> | ||
<td>10000</td> | ||
<td class="addbtn"><button> Modifier</button> | ||
<button>Supprimer</button> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</section> | ||
<section> | ||
|
||
</section> | ||
</div> | ||
</div> | ||
|
||
|
||
<script src="scripts.js"></script> | ||
</body> | ||
|
||
</html> |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
*{ | ||
box-sizing: border-box; | ||
} | ||
body{ | ||
background-color: #fff; | ||
font-size: 25px; | ||
font-family: Verdana, Geneva, Tahoma, sans-serif; | ||
} | ||
|
||
.main-title{ | ||
padding-top: 0; | ||
margin: 10; | ||
color: midnightblue; | ||
text-align: center; | ||
} | ||
header{ | ||
display: flex; | ||
justify-content: space-between; | ||
justify-items: center; | ||
color: midnightblue; | ||
} | ||
.label1{ | ||
border: 5px solid midnightblue; | ||
background-color: midnightblue; | ||
color: white; | ||
border-radius: 7px; | ||
font: bold; | ||
|
||
} | ||
.btn1 { | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
.liste1{ | ||
text-align: center; | ||
color: midnightblue; | ||
margin: 1px; | ||
} | ||
.table1{ | ||
width: 100%; | ||
border-collapse: collapse; | ||
} | ||
th,td { | ||
text-align: left; | ||
padding: 10px; | ||
border: 1px solid midnightblue; | ||
} | ||
th { | ||
background-color:midnightblue; | ||
color: #fff; | ||
} | ||
button { | ||
font-size: 25px; | ||
border-radius: 12px; | ||
margin-top: 5px !important; | ||
color: #fff; | ||
background-color: midnightblue; | ||
} | ||
td { | ||
color:midnightblue; | ||
} | ||
.main-page{ | ||
border: 1px solid midnightblue; | ||
padding: 0; | ||
margin: 0; | ||
} |