Skip to content

Commit

Permalink
adjusted css
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSyn88 committed Feb 25, 2024
1 parent dee0e11 commit ce6f744
Show file tree
Hide file tree
Showing 20 changed files with 3,103 additions and 22 deletions.
Binary file added build/Images/Profile_Picture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/Images/RT_Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/Images/dino_avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build/assets/contact-Bn6Ygt0R.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import{j as t}from"./index-k_BWehiM.js";const c={color:"#F05A22"},e=()=>t.jsx("section",{class:"contact",id:"contact",children:t.jsx("h1",{style:c,children:"Welcome to the contact page"})});export{e as default};
1 change: 1 addition & 0 deletions build/assets/features-D2GyC1en.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import{j as e}from"./index-k_BWehiM.js";const s={color:"#F05A22"},r=()=>e.jsx("section",{class:"features",id:"features",children:e.jsx("h1",{style:s,children:"Welcome to the features page"})});export{r as default};
1 change: 1 addition & 0 deletions build/assets/home-BS8MFAJe.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import{j as e}from"./index-k_BWehiM.js";const o={color:"#F05A22"},t=()=>e.jsx("section",{class:"home",id:"home",children:e.jsx("h1",{style:o,children:"Welcome to the home page"})});export{t as default};
5 changes: 5 additions & 0 deletions build/assets/index-BU-sPjLe.css

Large diffs are not rendered by default.

2,999 changes: 2,999 additions & 0 deletions build/assets/index-k_BWehiM.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/assets/react-CHdo91hT.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build/assets/user-Cmo50fQZ.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import{j as e}from"./index-k_BWehiM.js";const s={color:"#F05A22"},t=()=>e.jsx("section",{class:"user",id:"user",children:e.jsx("h1",{style:s,children:"Welcome to the user page"})});export{t as default};
Binary file added build/favicon.ico
Binary file not shown.
15 changes: 15 additions & 0 deletions build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rabid Tasker</title>
<script type="module" crossorigin src="/assets/index-k_BWehiM.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BU-sPjLe.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
1 change: 1 addition & 0 deletions build/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 60 additions & 3 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
border: none;
outline: none;
scroll-behavior: smooth;
font-family: 'Fira Sans', sans-serif;
}

.App {
text-align: center;
background-color: #282c34;
background-image: linear-gradient(to bottom right, #1a0d39, #1aa7bc);
}

section {
min-height: 100vh;
padding: 10rem 9% 2rem;
}

.home {
display: flex;
justify-content: center;
align-items: top;
}

.contact {
display: flex;
justify-content: center;
align-items: top;
}

.user {
display: flex;
justify-content: center;
align-items: top;
}

.features {
display: flex;
justify-content: center;
align-items: top;
}

.App-logo {
Expand All @@ -15,7 +57,7 @@
}

.App-header {
background-color: #282c34;
background-color: #382667;
min-height: 100vh;
display: flex;
flex-direction: column;
Expand All @@ -41,5 +83,20 @@

html {
height: 100%;
background-color: #282c34;
background-color: #1f2326;
}

.footer {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 1rem 9%;
background: #1f2326;
margin-top: auto;
color: #c4f3ff;
}

.footer-text p{
font-size: 1.2rem;
}
6 changes: 4 additions & 2 deletions src/NavBar/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export default function NavBar({ Link }) {
}


return (<Navbar bg="dark" expand="lg" variant='dark' sticky="top">
return (
<Navbar bg="dark" expand="lg" variant='dark' sticky="top">
<Container fluid>
<Navbar.Brand as={Link} to="/Home">
<img
Expand Down Expand Up @@ -70,5 +71,6 @@ export default function NavBar({ Link }) {
</Form>
</Navbar.Collapse>
</Container>
</Navbar>);
</Navbar>
);
}
15 changes: 6 additions & 9 deletions src/component/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,17 @@ import {

const Footer = () => {
return (
<Container>
<Row>
<hr style={{ color: 'white' }} />
<Col className="text-center py-3" style={{ color: 'white' }}>
&copy;{new Date().getFullYear()} Rabid Tasker | Check out our <a
<footer class="footer">
<div class="footer-text">
<a>&copy;{new Date().getFullYear()} Rabid Tasker | Check out our <a
style={{ color: 'white' }}
href="https://github.com/cytoshell/rabid-tasker"
target="_blank"
rel="noopener">
Github
</a>
</Col>
</Row>
</Container>
</a></a>
</div>
</footer>
)
}

Expand Down
4 changes: 2 additions & 2 deletions src/scenes/contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const H1style = {

const contact = () => {
return (
<div>
<section class="contact" id='contact'>
<h1 style={H1style}>Welcome to the contact page</h1>
</div>
</section>
)
}

Expand Down
4 changes: 2 additions & 2 deletions src/scenes/features.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const H1style = {

const features = () => {
return (
<div>
<section class="features" id='features'>
<h1 style={H1style}>Welcome to the features page</h1>
</div>
</section>
)
}

Expand Down
4 changes: 2 additions & 2 deletions src/scenes/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const H1style = {

const Home = () => {
return (
<div>
<section class="home" id='home'>
<h1 style={H1style}>Welcome to the home page</h1>
</div>
</section>
)
}

Expand Down
4 changes: 2 additions & 2 deletions src/scenes/user.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const H1style = {

const user = () => {
return (
<div>
<section class="user" id='user'>
<h1 style={H1style}>Welcome to the user page</h1>
</div>
</section>
)
}

Expand Down

0 comments on commit ce6f744

Please sign in to comment.