An open API service indexing awesome lists of open source software.

https://github.com/srdjan/srdjan.github.io

https://srdjan.github.io
https://github.com/srdjan/srdjan.github.io

personal website

Last synced: 10 months ago
JSON representation

https://srdjan.github.io

Awesome Lists containing this project

README

          

My home page [see it here!](https://srdjan.github.io/)

May use in the future:

- font sizing:
:root {
font-size: calc(1rem + 0.25vw);
}
- Mindful Palettes series no. 52 - Color sampler with color codes:
#FDFDFE, #EEF0F3, #EEFF99, #1A9597, #104071, and #000022

Example css:
```css
:root {
--primary-color: #2b2d42;
--secondary-color: #8d99ae;
--accent-color: #ef233c;
}

body {
background-color: var(--primary-color);
}

h1 {
color: var(--secondary-color);
}

a {
color: var(--accent-color);
}
```