From cf6a69af9b8b0767d7c8c19a7858cdb2c46e8615 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 16 Aug 2019 13:49:53 -0400 Subject: Added scss stuff --- public/css/style.scss | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 public/css/style.scss (limited to 'public/css/style.scss') diff --git a/public/css/style.scss b/public/css/style.scss new file mode 100644 index 0000000..4ecceb3 --- /dev/null +++ b/public/css/style.scss @@ -0,0 +1,36 @@ +/* + Please refrain from editing the style.css file and only edit the style.scss file. + */ + +$default-font: Play, sans-serif; + +body { + font-family: $default-font; +} + +.dark { + background-color: #212121; + color: #ffffff; +} + +.light { + background-color: #ffffff; + color: #000000; +} + +ul { + .yt { + margin: 0 auto; + text-align: center; + } + .none { + list-style-type:none; + } +} + +li { + .yt-vid-list { + display: inline-block; + vertical-align: top; + } +} -- cgit v1.2.3