diff --git a/feeds.ini b/feeds.ini new file mode 100644 index 0000000..784c0cc --- /dev/null +++ b/feeds.ini @@ -0,0 +1,25 @@ +[Apple Subreddit] + +URL = https://reddit.com/r/apple.rss +SUMMARY = False +IGNORE = ["Daily Tech Support"] +ToRead = 5 + +[New Yorker] + +URL = http://www.newyorker.com/feed/news +SUMMARY = True +IGNORE = ["presidential election","election night"] +ToRead = 5 + +[The Hindu: Sports] + +URL = https://www.thehindu.com/sport/feeder/default.rss + +[The Hindu: National News] + +URL = https://www.thehindu.com/news/national/feeder/default.rss + +[BBC: Europe] + +URL = http://feeds.bbci.co.uk/news/world/europe/rss.xml \ No newline at end of file diff --git a/styles/simple.css b/styles/simple.css new file mode 100644 index 0000000..a119309 --- /dev/null +++ b/styles/simple.css @@ -0,0 +1,67 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&display=swap'); + +* { + font-family: 'Merriweather', serif; + font-weight: 300; +} + +strong { + font-weight: 700; +} + +h1 { + font-family: 'Poppins', sans-serif; + font-weight: 500; +} + +#daily-dose { + font-size: 2*1.5em; + font-weight: 800; +} + +/* CSS HEX */ +--celadon-green: #21897eff; +--keppel: #3ba99cff; +--medium-turquoise: #69d1c5ff; +--aero: #7ebce6ff; +--medium-purple: #8980f5ff; + +/* CSS HSL */ +--celadon-green: hsla(174, 61%, 33%, 1); +--keppel: hsla(173, 48%, 45%, 1); +--medium-turquoise: hsla(173, 53%, 62%, 1); +--aero: hsla(204, 68%, 70%, 1); +--medium-purple: hsla(245, 85%, 73%, 1); + +/* SCSS HEX */ +$celadon-green: #21897eff; +$keppel: #3ba99cff; +$medium-turquoise: #69d1c5ff; +$aero: #7ebce6ff; +$medium-purple: #8980f5ff; + +/* SCSS HSL */ +$celadon-green: hsla(174, 61%, 33%, 1); +$keppel: hsla(173, 48%, 45%, 1); +$medium-turquoise: hsla(173, 53%, 62%, 1); +$aero: hsla(204, 68%, 70%, 1); +$medium-purple: hsla(245, 85%, 73%, 1); + +/* SCSS RGB */ +$celadon-green: rgba(33, 137, 126, 1); +$keppel: rgba(59, 169, 156, 1); +$medium-turquoise: rgba(105, 209, 197, 1); +$aero: rgba(126, 188, 230, 1); +$medium-purple: rgba(137, 128, 245, 1); + +/* SCSS Gradient */ +$gradient-top: linear-gradient(0deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-right: linear-gradient(90deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-bottom: linear-gradient(180deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-left: linear-gradient(270deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-top-right: linear-gradient(45deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-bottom-right: linear-gradient(135deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-top-left: linear-gradient(225deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-bottom-left: linear-gradient(315deg, #21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff); +$gradient-radial: radial-gradient(#21897eff, #3ba99cff, #69d1c5ff, #7ebce6ff, #8980f5ff);