/* CSS */
// import 'bootstrap/dist/css/bootstrap.min.css';
-import './app.scss';
+import './styles/app.scss';
+++ /dev/null
-@media (orientation: portrait) {
-
- html {
- background-image: url('./images/vertical_background.png');
- }
-
- body {
- .item {
- flex-basis: 33%;
- }
- }
-}
-
-@media (orientation: landscape) {
-
- html {
- background-image: url('./images/horizontal_background.png');
- }
-
- body {
- .item {
- flex-basis: 25%;
- }
- }
-}
-
-html {
- height: 100%;
- background-size: cover;
-}
-
-body {
- font-size: 1.2rem;
- font-family: Arial;
- color: #999999;
- margin: 5%;
-
- svg {
- path,
- polygon,
- linearGradient,
- rect {
- fill: #00ADDC !important;
- }
-
- circle {
- fill: none !important;
- }
-
- text {
- display: none !important;
- }
- }
-
- .parent {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: flex-start;
- align-items: flex-start;
- height: 100%;
-
- .item {
- .name {
- width: 100%;
- text-align: center;
- text-transform: uppercase;
- margin-top: -20%;
- }
- }
- }
-}
\ No newline at end of file
--- /dev/null
+@import "main.scss";
+@import "svg.scss";
+@import "portrait.scss";
+@import "landscape.scss";
\ No newline at end of file
--- /dev/null
+@media (orientation: landscape) {
+
+ html {
+ background-image: url('../images/horizontal_background.png');
+ }
+
+ body {
+ .item {
+ flex-basis: 25%;
+ }
+ }
+}
\ No newline at end of file
--- /dev/null
+html {
+ height: 100%;
+ background-size: cover;
+}
+
+body {
+ font-size: 1.2rem;
+ font-family: Arial;
+ color: #999999;
+ margin: 5%;
+
+ .parent {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ justify-content: flex-start;
+ align-items: flex-start;
+ height: 100%;
+
+ .item {
+ .name {
+ width: 100%;
+ text-align: center;
+ text-transform: uppercase;
+ margin-top: -20%;
+ }
+ }
+ }
+}
\ No newline at end of file
--- /dev/null
+@media (orientation: portrait) {
+
+ html {
+ background-image: url('../images/vertical_background.png');
+ }
+
+ body {
+ .item {
+ flex-basis: 33%;
+ }
+ }
+}
\ No newline at end of file
--- /dev/null
+body {
+ svg {
+ path,
+ polygon,
+ linearGradient,
+ rect {
+ fill: #00ADDC !important;
+ }
+
+ circle {
+ fill: none !important;
+ }
+
+ text {
+ display: none !important;
+ }
+ }
+}
\ No newline at end of file