Skip to content

Commit

Permalink
Merge pull request #36 from Moros1138/fonts-and-logos
Browse files Browse the repository at this point in the history
Fonts and logos
  • Loading branch information
Moros1138 authored May 1, 2024
2 parents 4b0fe45 + 6b7211e commit bf82a25
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 4 deletions.
Binary file removed public/images/PGEtinker-logo-big.png
Binary file not shown.
Binary file removed public/images/emscripten-logo.png
Binary file not shown.
Binary file removed public/images/pge-logo.png
Binary file not shown.
47 changes: 44 additions & 3 deletions resources/css/app.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
@import "./pixel-code.scss";


body {
--link-color: #f70;
--link-color: #ff6500;
--link-hover-color: #ffab62;

--background-color: #3e3c44;
--text-color:#ded;
--text-shadow-color: #000;

--menu-text-color: #ded;
--menu-background: #f1f1f1;
Expand All @@ -28,6 +32,7 @@ body.light {

--background-color: #fff;
--text-color:#000;
--text-shadow-color: #fff;

--menu-background: #f1f1f1;
--menu-hover-background:#f70;
Expand All @@ -51,6 +56,8 @@ body {
width: 100%;
height: 100%;
overflow: hidden;
font-family: 'Pixel Code', monospace;
font-size: 12px;
}

a:link,
Expand Down Expand Up @@ -91,14 +98,30 @@ nav a.brand img {
float: left;
}

nav a.brand:hover,
nav a.brand:link,
nav a.brand:active,
nav a.brand:visited {
display: inline-block;
line-height: 47px;
padding: 0 .8rem;
text-decoration: none;
font-size: 3rem;
color: var(--link-color);
text-shadow: .2rem .2rem .2rem #000;
}


a:active.menu-item,
a:link.menu-item,
a:visited.menu-item,
.menu-item {
display: inline-block;
background-color: var(--background-color);
color: var(--menu-text-color);
font-size: 16px;
font-size: 1.2rem;
letter-spacing: 1px;
text-shadow: .2rem .2rem .5rem var(--text-shadow-color);
height: 48px;
line-height: 48px;
vertical-align: middle;
Expand All @@ -108,19 +131,30 @@ a:visited.menu-item,
text-decoration: none;
}


.lucide {
vertical-align: middle;
filter: drop-shadow(.2rem .2rem .1rem var(--text-shadow-color));
}

nav .sponsor {
line-height: 47px;
padding: 0;
margin-right: .5rem;
font-size: 0.8rem;
text-shadow: .1rem .1rem .2rem var(--text-shadow-color);
white-space: nowrap;
}

@media (width <= 1100px) {
.sponsor a {
text-decoration: none;
}

.sponsor a:hover {
text-decoration: underline;
}

@media (width <= 1320px) {
nav .sponsor {
display: none;
}
Expand All @@ -142,6 +176,8 @@ nav .sponsor {
}

.dropdown-content a {
font-size: 1.2rem;
text-shadow: .2rem .2rem .5rem var(--text-shadow-color);
color: var(--submenu-text-color);
padding: 12px 16px;
text-decoration: none;
Expand Down Expand Up @@ -174,6 +210,11 @@ nav .navbar-right-menu {
nav .navbar-right-menu .dropdown-content {
right: 0;
}
nav .navbar-right-menu .menu-item {
margin-top: -3px;
}



#content {
position: absolute;
Expand Down
3 changes: 3 additions & 0 deletions resources/css/dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
max-width: 40rem;
margin: 10vh auto;
background: var(--dialog-background-color);
font-size: 1.2rem;
color: var(--dialog-text-color);
border: 1px solid var(--dialog-border-color);
border-radius: 0.4rem;
Expand Down Expand Up @@ -50,6 +51,7 @@
.ok {
background: #0D6EFD;
color: var(--dialog-text-color);
font-weight: bold;
}

.ok:hover {
Expand All @@ -60,6 +62,7 @@
.cancel {
background: #DC3545;
color: var(--dialog-text-color);
font-weight: bold;
}

.cancel:hover {
Expand Down
43 changes: 43 additions & 0 deletions resources/css/pixel-code.scss

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div id="app">
<nav id="header">
<a class="brand" href="/">
<img src="/images/PGEtinker-logo.png" alt="PGEtinker Logo">
PGEtinker
</a>
<div class="navbar-left-menu">
<div class="dropdown">
Expand Down

0 comments on commit bf82a25

Please sign in to comment.