Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS styling: #35

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build/bundle.js

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions client/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ class App extends Component {
render(){
return (
<div className="router">
<Typed
className="header"
strings={['GitBuddy']}
typeSpeed={300}
/>
<br/>
{/* <h1>gitBuddy</h1> */}

<main>
Expand Down
6 changes: 6 additions & 0 deletions client/components/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ function Login(props) {
"https://github.com/login/oauth/authorize?client_id=13e0e054832447d72513&redirect_uri=http://localhost:3000/login";
return (
<div className="oauth">
<Typed
className="headerLogin"
strings={['GitBuddy']}
typeSpeed={300}
/>
<br/>
<a href={`${oAuthUrl}`}>
<img
src='/assets/Octocat.png'
Expand Down
8 changes: 8 additions & 0 deletions client/components/MainContainer.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import React, { Component } from 'react';
import Typed from "react-typed";

import RepoGrabber from './RepoGrabber.jsx';
import DataDisplay from './DataDisplay';
import CSVExport from './CSVExport';
Expand Down Expand Up @@ -101,6 +103,12 @@ csvExporter.generateCsv(data);
if(this.state.name){nameVar = this.state.name}
return(
<div className="MainContainer">
<Typed
className="headerMainContainer"
strings={['GitBuddy']}
typeSpeed={300}
/>
<br/>
<p className="greeting" id='grettingID'>Hi, {`${nameVar}`}. <br/>Check out your followers below.</p>
<p id='greetingDetail' >Select your GitHub Followers and/or your Repo Stargazers</p>
<RepoGrabber
Expand Down
12 changes: 11 additions & 1 deletion client/stylesheets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@
text-align: center;
box-sizing: border-box;
}
.header {

.headerLogin{ font-size: 42px;
font-weight: bolder;
}

.oauth{
color: #414941;
margin-bottom: none;
padding-top: 100px;
}
.headerMainContainer {
color: #414941;
font-size: 42px;
font-weight: bolder;
Expand Down