├── hello-basic.svg ├── README.md ├── hello-complex.svg ├── hello-animated.svg └── hello-animated-color-scheme.svg /hello-basic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 13 | 14 |
15 |

Hi there, my name is Nikola 👋

16 |
17 |
18 |
19 |
20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # custom-readme-styles 2 | 3 | Showcase custom CSS and HTML inside your README's. 4 | 5 | See how to embed custom styling into any Markdown file on GitHub (or anywhere). 6 | 7 | If you click on any of the images, it will take you to its source code. 8 | 9 | ## Basic HTML and CSS 10 | 11 | [![Basic hello](hello-basic.svg)](https://github.com/nikolalsvk/custom-readme-styles/blame/main/hello-basic.svg) 12 | 13 | ## Advanced HTML and CSS 14 | 15 | [![Complex hello](hello-complex.svg)](https://github.com/nikolalsvk/custom-readme-styles/blame/main/hello-complex.svg) 16 | 17 | ## Animation in README 18 | 19 | [![Animated hello](hello-animated.svg)](https://github.com/nikolalsvk/custom-readme-styles/blame/main/hello-animated.svg) 20 | 21 | ## Animation based on system color scheme 22 | 23 | For this one, try toggling dark and light color scheme on your computer. 24 | 25 | [![Animated hello](hello-animated-color-scheme.svg)](https://github.com/nikolalsvk/custom-readme-styles/blame/main/hello-animated-color-scheme.svg) 26 | 27 | ## Aligning it nicely 28 | 29 |
30 | 31 | Click to see the source 32 | 33 |
34 | -------------------------------------------------------------------------------- /hello-complex.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 36 | 37 |
38 |

Hi there, my name is Nikola
👋

39 |
40 |
41 |
42 |
43 | -------------------------------------------------------------------------------- /hello-animated.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 61 | 62 |
63 |

Hi there, my name is Nikola
👋

64 |
65 |
66 |
67 |
68 | -------------------------------------------------------------------------------- /hello-animated-color-scheme.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 70 | 71 |
72 |

Hi there, my name is Nikola
👋

73 |
74 |
75 |
76 |
77 | --------------------------------------------------------------------------------