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
- Host: GitHub
- URL: https://github.com/srdjan/srdjan.github.io
- Owner: srdjan
- Created: 2011-11-28T03:08:11.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T12:11:26.000Z (11 months ago)
- Last Synced: 2025-03-06T10:59:03.530Z (10 months ago)
- Topics: personal, website
- Language: JavaScript
- Homepage:
- Size: 381 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
}
```