Skip to content

Commit

Permalink
Add Faction Logo's in Main Title
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRowey committed Apr 23, 2024
1 parent e0c7725 commit 17718f3
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 3 deletions.
6 changes: 6 additions & 0 deletions assets/images/faction/Aeon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions assets/images/faction/Cybran.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions assets/images/faction/Seraphim.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions assets/images/faction/UEF.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@
<div class="Space"></div>

<div class="Title GridBackground">
<h1>FAForever Patchnotes</h1>
<h1>
<img class="UEF" src="./assets/images/faction/UEF.svg">
<img class="CYBRAN" src="./assets/images/faction/Cybran.svg">
FAForever Patchnotes
<img class="AEON" src="./assets/images/faction/Aeon.svg">
<img class="SERAPHIM" src="./assets/images/faction/Seraphim.svg"></h1>
<p>One Location where the Balance &amp; Game Patchnote are Available in an easy-to-read manner.</p>
</div>

Expand Down
32 changes: 30 additions & 2 deletions style/root.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Ubuntu&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Declating Default Colors */
/* Declaring Default Colors */

:root{

Expand All @@ -12,7 +12,7 @@
--Primary-Dark-BG: #222;
--Primary-Light-BG: #666;

/* Seconday Backgrounds*/
/* Secondary Backgrounds*/
--Secondary-BG: #fff;

/* Primary Grid Background*/
Expand Down Expand Up @@ -96,4 +96,32 @@ a:active {
video {
width: 900px;
height: 100%;
}



/* Faction Images */

.UEF {
filter: invert(44%) sepia(87%) saturate(705%) hue-rotate(171deg) brightness(98%) contrast(94%);
width: 35px;
height: 35px;
}

.AEON {
filter: invert(61%) sepia(12%) saturate(2280%) hue-rotate(73deg) brightness(95%) contrast(82%);
width: 35px;
height: 35px;
}

.CYBRAN {
filter: invert(20%) sepia(47%) saturate(2292%) hue-rotate(335deg) brightness(156%) contrast(107%);
width: 35px;
height: 35px;
}

.SERAPHIM {
filter: invert(74%) sepia(39%) saturate(1931%) hue-rotate(353deg) brightness(105%) contrast(104%);
width: 35px;
height: 35px;
}

0 comments on commit 17718f3

Please sign in to comment.