📝 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.joshwcomeau.com/rss.xml
|
||||
https://zellwk.com/feed.xml
|
||||
file://./rss/sarasoueidan.rss
|
||||
file://./rss/VYPJXZwH.rss
|
||||
file://./rss/ewontfix.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;
|
||||
}
|
||||
|
||||
/* html */
|
||||
/* 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 */
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
font-size: 100%;
|
||||
}
|
||||
/* * */
|
||||
|
||||
/* box-sizing is inherited from the html element */
|
||||
*,
|
||||
*::before,
|
||||
**::after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
/* body */
|
||||
|
||||
/* 0 out all margin all body to clear default margins */
|
||||
body {
|
||||
margin: 0;
|
||||
|
|
|
|||
|
|
@ -69,9 +69,28 @@
|
|||
</div>
|
||||
</header>
|
||||
<main id="main">
|
||||
<div class="wrapper">
|
||||
<h1>Nice to meet you! I'm Adam Keyes.</h1>
|
||||
</div>
|
||||
<section class="hero">
|
||||
<div class="wrapper">
|
||||
<!-- 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>
|
||||
<footer class="footer">
|
||||
</footer>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue