diff --git a/README.md b/README.md index f666ed1..bade14a 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Just me writing "hello, world!" in as many languages as I can - [ ] c# - [ ] c++ +- [ ] css - [ ] coffeescript - [ ] elixir - [ ] java diff --git a/css/index.css b/css/index.css new file mode 100644 index 0000000..01f1c90 --- /dev/null +++ b/css/index.css @@ -0,0 +1,8 @@ +:root { + --name: "world" +} + +#hello-world::after { + content: "hello, " var(--name) "!"; + color: black; +} diff --git a/css/index.html b/css/index.html new file mode 100644 index 0000000..ce98df0 --- /dev/null +++ b/css/index.html @@ -0,0 +1,9 @@ + + +
+