Skip to content

Commit

Permalink
Apply several changes
Browse files Browse the repository at this point in the history
  • Loading branch information
monambike committed Mar 14, 2024
1 parent 3bfe6de commit 540887f
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 37 deletions.
34 changes: 17 additions & 17 deletions src/Monambike.Links/Monambike.Links/Components/Pages/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@
<header class="acrylic shadow">
<img class="profile-picture" src="images/profile-picture.jpg" alt="Photo from Vinicius Gabriel." />
<h1>Vinícius Gabriel</h1>
<span>Hello :) I'm a Software Developer now willing to be a Game Designer and 3D model animator.</span>
<h2>@@monambike</h2>
<span class="description">Hello :) I'm a Software Developer now willing to be a Game Designer and 3D model animator.</span>
</header>
<hr/>
<section class="acrylic shadow">
<h3>Links Gamers</h3>
<ul>
<li>
<a target="_blank" rel="nofollow" href="@Links.YouTubeMonambike">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/youtube.svg" alt="YouTube logo." />
<div class="text-container">
<span>Canal de Vídeos Editados</span>
Expand All @@ -24,7 +25,7 @@
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.YouTubeMonambikeLive">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/youtube.svg" alt="YouTube logo." />
<div class="text-container">
<span>Canal de Lives e Shorts</span>
Expand All @@ -34,33 +35,33 @@
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.InstagramMonambike">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/instagram.svg" alt="Instagram logo." />
<div class="text-container">
<span>Instagram Principal</span>
<span>Instagram (Main)</span>
</div>
</div>
</a>
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.Steam">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/steam.svg" alt="Steam logo." />
<div class="text-container">
<span>Conta da Steam</span>
<span>Steam Profile</span>
</div>
</div>
</a>
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.Steam">
<div class="container">
<a target="_blank" rel="nofollow" href="@Links.DiscordServer">
<div class="container solid shadow">
<img class="social-image" src="images/social/discord.svg" alt="Discord logo." />
<div class="text-container">
<span>Discord: @@monambike</span>
<span>Discord Server</span>
</div>
</div>
</a>
</a>
</li>
@* <li><a target="_blank" rel="nofollow" href="@Links.Facebook">Conta da Facebook</a></li> *@
</ul>
Expand All @@ -71,7 +72,7 @@
<ul>
<li>
<a target="_blank" rel="nofollow" href="@Links.LinkedIn">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/linkedin.svg" alt="LinkedIn logo." />
<div class="text-container">
<span>LinkedIn</span>
Expand All @@ -81,7 +82,7 @@
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.GitHub">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/github.svg" alt="GitHub logo." />
<div class="text-container">
<span>GitHub</span>
Expand All @@ -91,7 +92,7 @@
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.InstagramMonambikePortfolio">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/instagram.svg" alt="Instagram logo." />
<div class="text-container">
<span>Instagram (Portfolio)</span>
Expand All @@ -101,7 +102,7 @@
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.YouTubeMonambikePortfolio">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/youtube.svg" alt="YouTube logo." />
<div class="text-container">
<span>YouTube (Portfolio)</span>
Expand All @@ -111,7 +112,7 @@
</li>
<li>
<a target="_blank" rel="nofollow" href="@Links.ItchIo">
<div class="container">
<div class="container solid shadow">
<img class="social-image" src="images/social/itch-io.svg" alt="Itch.Io logo." />
<div class="text-container">
<span>Itch.Io</span>
Expand All @@ -121,5 +122,4 @@
</li>
</ul>
</section>
<hr />
</div>
65 changes: 45 additions & 20 deletions src/Monambike.Links/Monambike.Links/wwwroot/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
body {
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: url(images/background.jpg);
background: url(images/background.jpg) no-repeat;
background-attachment: fixed;
background-size: cover;
}

.profile-picture {
Expand All @@ -29,22 +31,25 @@ body {
h1 {
font-size: 2em;
font-weight: 600;
line-height: 2.5em;
line-height: 2em;
margin: 0;
}

h2 {
font-size: 1.75em;
font-size: 1.25em;
font-weight: 600;
line-height: 2.25em;
margin: 0;
}

.description {
line-height: 5em;
}

h3 {
font-size: 1.5em;
font-size: 1.75em;
font-weight: 600;
line-height: 2em; /* 14px converted to em */
margin: 0;
margin: 0.5em;
}

a {
Expand All @@ -61,26 +66,17 @@ li {
list-style-type: none;
padding: 0;
margin: 2px 0;
border: 2px solid black;
}

hr {
overflow: visible; /* For IE */
padding: 0;
border: none;
border-top: medium double #333;
color: #333;
border-top: medium solid #fff;
color: #fff;
text-align: center;
}

hr:after {
content: "§";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
background: white;
margin: 0 50px;
opacity: 0.35;
}

.acrylic {
Expand Down Expand Up @@ -109,7 +105,7 @@ hr:after {
right: 0;
bottom: 0;
z-index: -1;
opacity: 0.35;
opacity: 0.75;
border: 1px solid #fff;
background: #fff;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==);
Expand All @@ -119,3 +115,32 @@ hr:after {
border-radius: 1px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.2);
}

.solid {
padding: 2em 3em;
position: relative;
overflow: hidden;
margin: 1em;
}

.solid::before {
content: "";
position: absolute;
left: -10px;
top: -10px;
width: calc(100% + 20px);
height: calc(100% + 20px);
z-index: -1;
}

.solid::after {
content: "";
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
border: 1px solid #fff;
background: #fff;
}

0 comments on commit 540887f

Please sign in to comment.