added sample data

This commit is contained in:
Navan Chauhan 2020-11-10 18:56:53 +05:30
parent 98fc1a0497
commit 49ebd0fbd1
2 changed files with 92 additions and 0 deletions

25
feeds.ini Normal file
View File

@ -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

67
styles/simple.css Normal file
View File

@ -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);