This is a really good way to dive into a new code base and see what files have changed recentally.
This particular command will filter only less/sass/css commits... so change the awk expression as needed.
$ git log --name-only --since="365 days" | sort -u | awk '/\.(le|c|sa|sc)ss$/{print}' | nl