Skip to content

Commit

Permalink
Merge pull request #2 from Seneca-CDOT/master
Browse files Browse the repository at this point in the history
pull from origin
  • Loading branch information
tonyvugithub committed Oct 12, 2020
2 parents b171e5a + c4b207e commit f6e1d24
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 46 deletions.
65 changes: 21 additions & 44 deletions docs/gui-colour-palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,63 +2,40 @@

Thank you for thinking to contribute to the look of the Telescope. This is a guide to the colour palette that we use to make our web site looks pretty and up-to-date.

| #FFFFFF, rgb (255,255,255) | #A4D4FF, rgb (164, 212, 255) | #3670A5, rgb (54, 112, 165) |
| :---------------------------: | :---------------------------: | :---------------------------: |
| ![#FFFFFF](images/ffffff.PNG) | ![#A4D4FF](images/A4D4FF.PNG) | ![#3670A5](images/3670A5.PNG) |
![Palette](images/palette.png)

| #9E9E9E, rgb (158, 158, 158) | #002944, rgb (0, 41, 68) |
| :---------------------------: | :---------------------------: |
| ![#9E9E9E](images/9E9E9E.PNG) | ![#002944](images/002944.PNG) |
## Palette

## Header
![#333E64](https://placehold.it/15/333E64/000000?text=+) **Primary**

![#A4D4FF](https://placehold.it/15/A4D4FF/000000?text=+) **Title:**
- hex: #333E64
- rgb: (51, 62, 100)

- hex: #A4D4FF
- rgb: (164, 212, 255)
![#0589D6](https://placehold.it/15/0589D6/000000?text=+) **Secondary**

![#FFFFFF](https://placehold.it/15/FFFFFF/000000?text=+) **Search Icon:**
- hex: #0589D6
- rgb: (5, 137, 214)

- hex: #FFFFFF
- rgb: (255, 255, 255)
![#E5E5E5](https://placehold.it/15/E5E5E5/000000?text=+) **Background**

![#FFFFFF](https://placehold.it/15/FFFFFF/000000?text=+) **Menu Icons (Home, Login, About):**
- hex: #E5E5E5
- rgb: (229, 229, 229)

- hex: #FFFFFF
- rgb: (255, 255, 255)
## Typography

## Banner
![#E5E5E5](https://placehold.it/15/E5E5E5/000000?text=+) **Primary**

![#FFFFFF](https://placehold.it/15/FFFFFF/000000?text=+) **Name, statistics, version:**
- hex: #E5E5E5
- rgb: (229, 229, 229)

- hex: #FFFFFF
- rgb: (255, 255, 255)
![#8BC2EB](https://placehold.it/15/8BC2EB/000000?text=+) **Secondary**

## Search Bar
- hex: #8BC2EB
- rgb: (139, 194, 235)

![#3670A5](https://placehold.it/15/3670A5/000000?text=+) **Filter name and search icon background:**
![#181818](https://placehold.it/15/181818/000000?text=+) **Default**

- hex: #3670A5
- rgb: (54, 112, 165)

![#9E9E9E](https://placehold.it/15/9E9E9E/000000?text=+) **Input background:**

- hex: #9E9E9E
- rgb: (158, 158, 158)

![#002944](https://placehold.it/15/002944/000000?text=+) **Magnifying glass icon**

- hex: #002944
- rgb: (0,41,68)

![#3670A5](https://placehold.it/15/3670A5/000000?text=+) **Magnifying glass icon background colour:**

- hex: #3670A5
- rgb: (54, 112, 165)

![#3670A5](https://placehold.it/15/3670A5/000000?text=+) **Form control:**

- hex: #3670A5
- rgb: (54, 112, 165)
- hex: #181818
- rgb: (24, 24, 24)

“The Free Image Placeholder Service Favoured By Designers.” Placeholder.com, 17 Dec. 2019, placeholder.com/.
Binary file added docs/images/palette.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/backend/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require('./web/server');
/**
* Shutting Down Logic for most Server Shutdown Cases
*/
process.on('exit', shutdown('exit'));
process.on('beforeExit', shutdown('beforeExit'));
process.on('SIGTERM', shutdown('SIGTERM'));
process.on('SIGINT', shutdown('SIGINT'));
process.on('SIGQUIT', shutdown('SIGQUIT'));
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/components/Posts/Posts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const Posts = () => {
}

return posts.length > 0 ? (
<Container>
<Container className={classes.root}>
<Container className={classes.root}>
{posts.map(({ id, feed, html, title, url, updated }) => (
<Post
Expand Down

0 comments on commit f6e1d24

Please sign in to comment.