Compare commits

..

No commits in common. "ba527255cce0137f66e6ee91568267e338cdd773" and "541febceac09e59e5641926d8e4170970e318d54" have entirely different histories.

3 changed files with 15 additions and 15 deletions

View File

@ -5,7 +5,7 @@
// All paths require trailing slashes! // All paths require trailing slashes!
$rootDir = __DIR__ . '/../images/'; $rootDir = __DIR__ . '/../images/';
// The URI at which the rootDir will be served // The URI at which the rootDir will be served
$rootPath = 'images/'; $rootPath = '/images/';
// Path of the directory containing all the files to be sorted, relative to $rootDir // Path of the directory containing all the files to be sorted, relative to $rootDir
$stagingDirName = '.sort/'; $stagingDirName = '.sort/';

View File

@ -53,7 +53,7 @@ main
text-align: center text-align: center
.main-box .main-box
background-color: $bg1 background: $bg2
.current-file .current-file
width: 100% width: 100%
height: $file-height height: $file-height
@ -81,8 +81,8 @@ main
margin: auto margin: auto
.second-box .second-box
padding-top: $box-margin margin-top: $box-margin
padding-bottom: $box-margin margin-bottom: $box-margin
footer footer
@ -212,9 +212,10 @@ button:hover
main main
display: flex display: flex
flex-direction: row flex-direction: row
padding-bottom: $footer-height
.main-box .main-box
width: 75% width: 75%
max-height: calc(100vh - $footer-height - 2 * $footer-padding-y) max-height: calc(100vh - $footer-height)
.splash-text .splash-text
filter: drop-shadow(0.20rem 0.20rem 0 $accent) filter: drop-shadow(0.20rem 0.20rem 0 $accent)
@ -222,10 +223,8 @@ button:hover
display: flex display: flex
flex-direction: column flex-direction: column
width: 25% width: 25%
max-height: calc(100vh - $footer-height - 2 * $footer-padding-y) max-height: calc(100vh - $footer-height)
overflow: scroll overflow: scroll
margin-top: 0
margin-bottom: 0
.current-file .current-file
height: 100% height: 100%

View File

@ -30,7 +30,7 @@ main * {
} }
.main-box { .main-box {
background-color: #ebdbb2; background: #d5c4a1;
} }
.current-file { .current-file {
@ -60,8 +60,8 @@ main * {
} }
.second-box { .second-box {
padding-top: 0.4rem; margin-top: 0.4rem;
padding-bottom: 0.4rem; margin-bottom: 0.4rem;
} }
footer { footer {
@ -220,10 +220,11 @@ button:hover {
main { main {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
padding-bottom: 20px;
} }
.main-box { .main-box {
width: 75%; width: 75%;
max-height: calc(100vh - 20px - 4px); max-height: calc(100vh - 20px);
} }
.splash-text { .splash-text {
filter: drop-shadow(0.2rem 0.2rem 0 #9d0006); filter: drop-shadow(0.2rem 0.2rem 0 #9d0006);
@ -232,10 +233,8 @@ button:hover {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 25%; width: 25%;
max-height: calc(100vh - 20px - 4px); max-height: calc(100vh - 20px);
overflow: scroll; overflow: scroll;
margin-top: 0;
margin-bottom: 0;
} }
.current-file { .current-file {
height: 100%; height: 100%;
@ -247,3 +246,5 @@ button:hover {
bottom: 0; bottom: 0;
} }
} }
/*# sourceMappingURL=style.css.map */