Skip to content

Commit 2a04075

Browse files
committed
//
1 parent 954425b commit 2a04075

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="page-container">
22
<div layout="column" layout-align="center center" class="home-intro">
3-
<h1>{{ home.greeting }}</h1>
4-
<p>Welcome to my AngularJS + Material portfolio demo.</p>
3+
<h1 class="hero-name">Ongun Akay</h1>
4+
<p class="hero-subtext">Welcome to my AngularJS + Material portfolio demo.</p>
55
</div>
66
</div>

style.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,21 @@ a:hover {
3838
}
3939

4040
.home-intro {
41+
min-height: 80vh;
4142
text-align: center;
42-
padding: 40px 0;
43+
padding-top: 40px;
44+
}
45+
46+
.hero-name {
47+
font-size: 4rem;
48+
font-weight: 700;
49+
color: #3f51b5; /* Angular Material Indigo */
50+
margin-bottom: 0.5rem;
51+
}
52+
53+
.hero-subtext {
54+
font-size: 1.5rem;
55+
color: #666;
4356
}
4457

4558
/* === Toolbar === */

0 commit comments

Comments
 (0)