Skip to content

Update README.md, font size for React Component #55

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

Open
wants to merge 4 commits into
base: master
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
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,25 @@
# chronos
# Chronos

## Introduction

Chronos is a full-stack React/Flask application where the user is able to create timelines of any event that happened historically.

## Homepage

On the landing page, users can sign up or log into the site, and they will see all of the existing timelines that have been created by other users. Once logged in, users can view other people's timeline, or create their own timelines to contribute to the community.

## Timelines

On each timeline's page, users see a list of all the events in that timeline in chronological order. If the user created that timeline, they can add, delete, or edit events on it.

## Events

Each event includes information not only about the title and date of the event, but also a quick summary and links to videos, pictures or infographics that correspond to the event.

## Future Versions

In future versions we would like to integrate the MediaWiki API in order to extract summaries of events from Wikipedia to include in the summary section of the events.

## Technologies Used

React, Flask, Peewee, SQLite, Playhouse, bcrypt, Styled Components
4 changes: 4 additions & 0 deletions frontend/chronos-react/src/Components/TimeShow/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export const ShowDiv = style.div`
flex: 33%;
padding: 0 4px;
}

p {
font-size: 12px;
}
`;

export const Image = style.img`
Expand Down