Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
BR0KK3R committed Mar 19, 2023
1 parent c756e5d commit fd53aa7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<div class="container">
<div class="column">
<img id="logo" src="logo.png" height="100px">
<img id="logo" src="logo.png">
<h1 id="id"></h1>
</div>
</div>
Expand Down
7 changes: 6 additions & 1 deletion html/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@
align-items: center;
}

img{
height: 70px; /* logo height */
width: 70px; /* logo width */
}

h1{
margin: 0;
transform: translateY(-10px); /* This is distance between logo and id [-value = shorter distance], [value = longer distance] */
transform: translateY(5px); /* This is distance between logo and id [-value = shorter distance], [value = longer distance] */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 800;
color: white; /* color of ID text */
Expand Down

0 comments on commit fd53aa7

Please sign in to comment.