Skip to content

Commit

Permalink
SCSS added.
Browse files Browse the repository at this point in the history
  • Loading branch information
dba-presents committed Jan 30, 2019
1 parent 73e2647 commit bd7fa01
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
3 changes: 3 additions & 0 deletions src/main/webapp/styles/_variables.scss
@@ -0,0 +1,3 @@
$margin-background-color: azure;
$content-background-color: white;
$content-width: 500px;
14 changes: 0 additions & 14 deletions src/main/webapp/styles/main.css

This file was deleted.

16 changes: 16 additions & 0 deletions src/main/webapp/styles/main.scss
@@ -0,0 +1,16 @@
@import '_variables';

body {
background-color: $margin-background-color;
text-align: center;

.main-container {
width: $content-width;
display: inline-block;
background-color: $content-background-color;
}

ul {
list-style-type: none;
}
}

0 comments on commit bd7fa01

Please sign in to comment.