Skip to content

Commit eb225bb

Browse files
committed
Formatting Financing Page
1 parent 5f1577e commit eb225bb

1 file changed

Lines changed: 26 additions & 16 deletions

File tree

finance.html

Lines changed: 26 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,31 @@
2323
color: black;
2424
}
2525

26-
.container {
26+
.paw-plan {
27+
position: absolute;
28+
top: 20px;
29+
left: 20px;
30+
font-size: 30px;
31+
font-weight: bold;
32+
color: black;
33+
}
34+
.main-boxes-box {
2735
display: flex;
2836
justify-content: space-around;
2937
align-items: flex-start;
3038
margin: 20px;
3139
padding: 20px;
3240
background-color: white;
33-
border-radius: 10px;
3441
}
3542

3643
.box {
3744
flex: 1;
3845
margin: 10px;
39-
border: 1px solid #ccc;
40-
border-radius: 10px;
46+
border: 1px solid black;
4147
padding: 20px;
4248
background-color: #f9f9f9;
4349

50+
4451
}
4552

4653
.box h2 {
@@ -52,6 +59,7 @@
5259
text-align: center;
5360
color: black;
5461
margin: 10px 0;
62+
min-height: 40px;
5563
}
5664

5765
.button-container {
@@ -67,7 +75,6 @@
6775
text-align: center;
6876
font-size: 16px;
6977
cursor: pointer;
70-
border-radius: 5px;
7178
}
7279

7380
.back-button {
@@ -80,7 +87,6 @@
8087
padding: 10px 10px;
8188
font-size: 14px;
8289
cursor: pointer;
83-
border-radius: 5px;
8490
}
8591

8692

@@ -89,24 +95,28 @@
8995

9096
<body>
9197

98+
<!--ACTUAL IMPLEMENTATION-->
99+
92100
<!-- Titles -->
101+
93102
<div class="header">
103+
<div class="paw-plan">Paw Plan</div>
94104
<button class="back-button">Back to Budget Info</button>
95105
<h1>Financial Planning</h1>
96106
</div>
97107

98108

99-
<div class="container">
109+
<div class="main-boxes-box">
100110
<!-- student Loans -->
101111
<div class="box">
102-
<h2>Student Loans</h2>
103-
<p>Current Amount Owed</p>
112+
<h2>Student Loans:</h2>
113+
<p><strong>Current Amount Owed:</strong></p>
104114
<p>$75000</p>
105-
<p>Interest</p>
115+
<p><strong>Interest:</strong></p>
106116
<p>10%</p>
107-
<p>Average Payment</p>
117+
<p><strong>Average Payment:</strong></p>
108118
<p>$350</p>
109-
<p>Time Until Paid Off</p>
119+
<p><strong>Time Until Paid Off:</strong></p>
110120
<p>25 Years, 5 Months</p>
111121
<div class="button-container">
112122
<button class="button">Edit Loans</button>
@@ -116,13 +126,13 @@ <h2>Student Loans</h2>
116126
<!-- Savings -->
117127
<div class="box">
118128
<h2>Savings Goals</h2>
119-
<p>Amount To Save</p>
129+
<p><strong>Amount to Save:</strong></p>
120130
<p>$2000</p>
121-
<p>Monthly Income</p>
131+
<p><strong>Monthly Income:</strong></p>
122132
<p>$250</p>
123-
<p>Monthly Expenses</p>
133+
<p><strong>Monthly Expenses:</strong></p>
124134
<p>$100</p>
125-
<p>Time Until Goal Reached</p>
135+
<p><strong>Time Until Goal Reached:</strong></p>
126136
<p>1 Years, 10 Months</p>
127137
<div class="button-container">
128138
<button class="button">Edit Savings</button>

0 commit comments

Comments
 (0)