Skip to content

Commit

Permalink
New text
Browse files Browse the repository at this point in the history
  • Loading branch information
Remaster1 committed Oct 14, 2023
1 parent 89e50b8 commit 2877174
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@
<body>
<header>
<nav class="head-menu">
<span class="logo">Remaster</span>
<span class="logo"><span class="gradient">R</span>emaster</span>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<main>
<div class="greet-text">
<div id="home" class="greet-text">
<h1>Hi, im Ivan aka Remaster!</h1>
<p>I'm Full-Stack Developer</p>
</div>

</main>
Expand Down
15 changes: 13 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ nav ul li a::after {
transition: .25s ease-in-out;
}

nav ul li a:hover::after{
nav ul li a:hover::after {
height: 2px;
width: 100%;
}
Expand All @@ -47,6 +47,17 @@ nav ul li a:hover::after{
font-size: 1.7em;
}

.greet-text{
.greet-text {
text-align: center;
}

.greet-text p{
font-size: 25px;
}

.gradient {
background: rgb(0, 3, 36);
background: linear-gradient(142deg, rgba(0, 3, 36, 1) 0%, rgba(9, 9, 121, 1) 27%, rgba(0, 212, 255, 1) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

0 comments on commit 2877174

Please sign in to comment.