This commit is contained in:
CNSeattle 2022-12-30 13:21:15 -08:00
parent 36dd8bc308
commit e1fb49c208
3 changed files with 27 additions and 10 deletions

BIN
images/LogoWebsite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View file

@ -11,7 +11,8 @@
<body>
<div id="heading">
<h1 class="text">Code Ninjas Seattle Badge Showcase</h1>
<img src="images/LogoWebsite.png" id="logo" class="center" alt="Code Ninjas Seattle">
<h1 class="text">Badge Showcase</h1>
</div>
<div id="body">
<div id="links">

View file

@ -6,16 +6,32 @@
justify-content: center;
}
.text{
#heading {
padding: 10%;
}
#logo {
width: 50vw;
padding: 2%;
}
.text {
text-align: center;
}
.links {
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.links {
width: 50vh;
position: relative;
display: inline-block;
padding-left: 1em;
left: 50%;
transform: translateX(-50%);
transform: translateY(50%);
position: relative;
display: inline-block;
padding-left: 1em;
left: 50%;
transform: translateX(-50%);
transform: translateY(50%);
list-style-type: none;
}
}