summaryrefslogtreecommitdiffhomepage
path: root/website
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2020-09-09 09:06:26 -0700
committerAndrei Vagin <avagin@gmail.com>2020-09-09 17:53:10 -0700
commita17a13c5e1b5f42a3ad2c1f269cfd0aeb918348f (patch)
treef372ae72f81f77d0c2984d1e184e74d14be5338f /website
parenta29cc274a1478db552f6a98efe52ecdf96c71cd8 (diff)
Add syntax highlighting to website
Adds a syntax highlighting theme css so that code snippets are highlighted properly. PiperOrigin-RevId: 330733737
Diffstat (limited to 'website')
-rw-r--r--website/css/main.scss15
1 files changed, 10 insertions, 5 deletions
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";