From a17a13c5e1b5f42a3ad2c1f269cfd0aeb918348f Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Wed, 9 Sep 2020 09:06:26 -0700 Subject: Add syntax highlighting to website Adds a syntax highlighting theme css so that code snippets are highlighted properly. PiperOrigin-RevId: 330733737 --- website/css/main.scss | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'website') diff --git a/website/css/main.scss b/website/css/main.scss index 06106833f..4b3b7b500 100644 --- a/website/css/main.scss +++ b/website/css/main.scss @@ -1,5 +1,10 @@ -@import 'style.scss'; -@import 'front.scss'; -@import 'navbar.scss'; -@import 'sidebar.scss'; -@import 'footer.scss'; +// The main style sheet for gvisor.dev + +// NOTE: Do not include file extensions to import .sass and .css files seamlessly. +@import "style"; +@import "front"; +@import "navbar"; +@import "sidebar"; +@import "footer"; +// syntax is generated by rougify. +@import "syntax"; -- cgit v1.2.3