Update css and README

This commit is contained in:
Dave Gallant
2022-09-02 13:48:40 +00:00
parent d0427e85f6
commit 0d80d4de3b
3 changed files with 26 additions and 10 deletions

View File

@@ -13,13 +13,13 @@ help:
@echo @echo
.PHONY: help .PHONY: help
## backend-server: Build and run the backend from source ## backend: Build and run the backend from source
backend-server: backend:
@cd backend && go run . @cd backend && go run .
.PHONY: server .PHONY: server
## frontend-server: Build and run the frontend from source ## frontend: Build and run the frontend from source
frontend-server: frontend:
@npx vue-cli-service serve @npx vue-cli-service serve
.PHONY: server .PHONY: server

View File

@@ -1,8 +1,21 @@
# rfd-fyi # rfd-fyi
## Dev This repository provides a simple, less-distracting overlay for hot deals posted on https://forums.redflagdeals.com.
The frontend is made with Vue 3 and the backend is written in Go. The backend exists for caching purposes; to prevent excessive requests to RedFlagDeals itself.
It is hosted at [rfd.fyi](https://rfd.fyi).
## Local Development
To get up and running locally: in one pane/tab, run:
```sh
make backend
```
In another pane/tab, run:
```sh ```sh
make frontend make frontend
make backend
``` ```

View File

@@ -4,6 +4,13 @@
body { body {
background-color: black; background-color: black;
max-width: 100%;
}
html {
background-color: #282828; /**/
color: #ebdbb2; /**/
min-width: 100%;
} }
.thead { .thead {
@@ -163,10 +170,6 @@ h6 {
font-family: "PT Sans Narrow", sans-serif; font-family: "PT Sans Narrow", sans-serif;
font-weight: 700; font-weight: 700;
} }
html {
background-color: #282828; /**/
color: #ebdbb2; /**/
}
body { body {
background-color: #3c3836; /**/ background-color: #3c3836; /**/
margin: 0 auto; margin: 0 auto;