📝 Added sara soueidan blog rss feed
This commit is contained in:
parent
75e83b1504
commit
511c2b8621
4 changed files with 7961 additions and 6 deletions
|
|
@ -11,6 +11,7 @@ https://typicalprogrammer.com/feed.xml
|
||||||
https://www.paritybit.ca/feed.xml
|
https://www.paritybit.ca/feed.xml
|
||||||
https://www.joshwcomeau.com/rss.xml
|
https://www.joshwcomeau.com/rss.xml
|
||||||
https://zellwk.com/feed.xml
|
https://zellwk.com/feed.xml
|
||||||
|
file://./rss/sarasoueidan.rss
|
||||||
file://./rss/VYPJXZwH.rss
|
file://./rss/VYPJXZwH.rss
|
||||||
file://./rss/ewontfix.rss
|
file://./rss/ewontfix.rss
|
||||||
file://./rss/feed.rss
|
file://./rss/feed.rss
|
||||||
|
|
|
||||||
7936
.config/newsboat/rss/sarasoueidan.rss
Normal file
7936
.config/newsboat/rss/sarasoueidan.rss
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -37,21 +37,20 @@
|
||||||
--transition: 250ms ease-in-out;
|
--transition: 250ms ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* html */
|
|
||||||
/* Padding doesn't add to the width or height of elements */
|
/* Padding doesn't add to the width or height of elements */
|
||||||
/* font-size is set to 100% so that fonts reference browser's font-styles */
|
/* font-size is set to 100% so that fonts reference browser's font-styles */
|
||||||
html {
|
html {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
}
|
}
|
||||||
/* * */
|
|
||||||
/* box-sizing is inherited from the html element */
|
/* box-sizing is inherited from the html element */
|
||||||
*,
|
*,
|
||||||
*::before,
|
*::before,
|
||||||
**::after {
|
**::after {
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
/* body */
|
|
||||||
/* 0 out all margin all body to clear default margins */
|
/* 0 out all margin all body to clear default margins */
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
||||||
|
|
@ -69,9 +69,28 @@
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<main id="main">
|
<main id="main">
|
||||||
<div class="wrapper">
|
<section class="hero">
|
||||||
<h1>Nice to meet you! I'm Adam Keyes.</h1>
|
<div class="wrapper">
|
||||||
</div>
|
<!-- srcset allows for very responsive design, see:
|
||||||
|
https://cloudfour.com/thinks/responsive-images-the-simple-way/ -->
|
||||||
|
<!-- she calculates the sizes by comparing the width of the
|
||||||
|
image to the total viewport, the percentage is the vw-->
|
||||||
|
<!-- the ---.98px value comes from a bootstrap trick regarding
|
||||||
|
media queries of the various sizes, it is 0.02 pixels less
|
||||||
|
than our media queries to ensure no overlap-->
|
||||||
|
<!-- the final 445px is the max width of the image-->
|
||||||
|
<img src="/assets/images/image-profile-mobile.webp"
|
||||||
|
alt="picture of Adam Keyes"
|
||||||
|
srcset="
|
||||||
|
/assets/images/image-profile-mobile.webp 348w,
|
||||||
|
/assets/images/image-profile-tablet.webp 646w,
|
||||||
|
/assets/images/image-profile-desktop.webp 890w"
|
||||||
|
sizes="(max-width: 599.98px) 46.4vw, (max-width: 999.98px)
|
||||||
|
42vw, 445px"
|
||||||
|
/>
|
||||||
|
<h1>Nice to meet you! I'm Adam Keyes.</h1>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue