> ‘plugins/assets/Readme.rst’ < ‘assets/__init__.py’ > ‘plugins/assets/__init__.py’ < ‘assets/assets.py’ > ‘plugins/assets/assets.py’ < ‘assets/requirements.txt’ > ‘plugins/assets/requirements.txt’ < ‘assets/test_assets.py’ > ‘plugins/assets/test_assets.py’ < ‘assets/test_data/static/css/style.min.css’ > ‘plugins/assets/test_data/static/css/style.min.css’ < ‘assets/test_data/static/css/style.scss’ > ‘plugins/assets/test_data/static/css/style.scss’ < ‘assets/test_data/templates/base.html’ > ‘plugins/assets/test_data/templates/base.html’
20 lines
298 B
SCSS
20 lines
298 B
SCSS
/* -*- scss-compile-at-save: nil -*- */
|
|
|
|
$baseFontFamily : "Droid Sans", sans-serif;
|
|
$textColor : #242424;
|
|
$bodyBackground : #e4e4e4;
|
|
|
|
body {
|
|
font: 14px/1.5 $baseFontFamily;
|
|
background-color: $bodyBackground;
|
|
color: $textColor;
|
|
}
|
|
|
|
a {
|
|
color: red;
|
|
|
|
&:hover {
|
|
color: orange;
|
|
}
|
|
}
|