Skip to content

Commit

Permalink
started work on bonus pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Delta7Actual committed Nov 10, 2023
1 parent 7041dd2 commit 8980a98
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 9 deletions.
28 changes: 28 additions & 0 deletions CSS/contributors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@font-face {
font-family: "Jet";
src: url(../Fonts/JetBrainsMono-Bold.ttf);
}

:root {
--darker: rgb(26, 28, 34);
--dark: #191d22;
--medium: #202429;
--light: #282e35;
--primary: #007d82;
--secondary: #e09f1f;
}

body {
font-family: Jet;
background-color: var(--darker);
margin: 0px;
color: white;
text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
}

.title {
color: var(--primary);
font-size: 4.5em;
}
28 changes: 28 additions & 0 deletions CSS/gamesList.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@font-face {
font-family: "Jet";
src: url(../Fonts/JetBrainsMono-Bold.ttf);
}

:root {
--darker: rgb(26, 28, 34);
--dark: #191d22;
--medium: #202429;
--light: #282e35;
--primary: #007d82;
--secondary: #e09f1f;
}

body {
font-family: Jet;
background-color: var(--darker);
margin: 0px;
color: white;
text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
}

.title {
color: var(--primary);
font-size: 4.5em;
}
10 changes: 9 additions & 1 deletion CSS/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}

body {
background-color: black;
background-color: var(--darker);
font-family: Jet;
display: grid;
grid-template-columns: 0.6fr 1fr;
Expand Down Expand Up @@ -180,6 +180,14 @@ nav {
color: inherit;
}

.no-link.nav-button {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
text-decoration: none;
}

.nav-button:hover {
animation: button-change 0.5s ease-out forwards;
}
Expand Down
5 changes: 4 additions & 1 deletion contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="CSS/contributors.css" />
<title>UCI - CONTRIBUTORS</title>
</head>
<body></body>
<body>
<div class="title">OUR CONTRIBUTORS!</div>
</body>
</html>
5 changes: 4 additions & 1 deletion gameslist.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="CSS/gamesList.css" />
<title>UCI - GAMES</title>
</head>
<body></body>
<body>
<div class="title">BROWSE OUR GAMES!</div>
</body>
</html>
10 changes: 4 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@
<body>
<div class="left-column">
<nav>
<button class="nav-button">
<a href="contributors.html" class="no-link">CONTRIBUTORS</a>
</button>
<button class="nav-button">
<a href="gameslist.html" class="no-link">GAMES</a>
</button>
<a href="contributors.html" class="nav-button no-link">
CONTRIBUTORS
</a>
<a href="gameslist.html" class="nav-button no-link"> GAMES </a>
</nav>
<div class="left-title-container">
<div class="PrimaryTitle">WELCOME!</div>
Expand Down

0 comments on commit 8980a98

Please sign in to comment.