Skip to content

Commit

Permalink
Exolve v1.03
Browse files Browse the repository at this point in the history
  • Loading branch information
viresh-ratnakar authored Feb 3, 2021
1 parent 7597ac4 commit 129dbd2
Show file tree
Hide file tree
Showing 52 changed files with 375 additions and 212 deletions.
2 changes: 1 addition & 1 deletion exolve-from-ipuz.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SOFTWARE.
The latest code and documentation for Exolve can be found at:
https://github.com/viresh-ratnakar/exolve
Version: Exolve v1.02 January 30 2021
Version: Exolve v1.03 February 3 2021
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion exolve-from-puz.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SOFTWARE.
The latest code and documentation for Exolve can be found at:
https://github.com/viresh-ratnakar/exolve
Version: Exolve v1.02 January 30 2021
Version: Exolve v1.03 February 3 2021
*/

function exolveFromPuzNextNull(buffer, offset) {
Expand Down
6 changes: 3 additions & 3 deletions exolve-m-simple.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
See the full Exolve license notice in exolve-m.js.
Version: Exolve v1.02 January 30 2021
Version: Exolve v1.03 February 3 2021
-->

<link rel="stylesheet" type="text/css" href="https://viresh-ratnakar.github.io/exolve-m.css?v1.02"/>
<script src="https://viresh-ratnakar.github.io/exolve-m.js?v1.02"></script>
<link rel="stylesheet" type="text/css" href="https://viresh-ratnakar.github.io/exolve-m.css?v1.03"/>
<script src="https://viresh-ratnakar.github.io/exolve-m.js?v1.03"></script>

<title>Exolve</title>

Expand Down
80 changes: 67 additions & 13 deletions exolve-m.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Copyright (c) 2019 Viresh Ratnakar
See the full license notice in exolve-m.js.
Version: Exolve v1.02 January 30 2021
Version: Exolve v1.03 February 3 2021
*/

@media (max-width: 500px) {
Expand All @@ -30,6 +30,12 @@ Version: Exolve v1.02 January 30 2021
font-size: 10px;
font-family: monospace;
}
.xlv-grid-panel {
margin: 0;
}
.xlv-clues-panel {
margin: 0 0 8px 0;
}

@media (max-width: 325px) {
.xlv-wide-box {
Expand All @@ -43,7 +49,6 @@ Version: Exolve v1.02 January 30 2021
.xlv-clues-box {
width: 100%;
max-width: 325px;
margin: 0;
}
.xlv-button {
font-size: 9px;
Expand All @@ -66,7 +71,7 @@ Version: Exolve v1.02 January 30 2021
}
}

@media (min-width: 326px) and (max-width: 800px) {
@media (min-width: 326px) and (max-width: 500px) {
.xlv-wide-box {
width: 100%;
max-width: 480px;
Expand All @@ -78,7 +83,6 @@ Version: Exolve v1.02 January 30 2021
.xlv-clues-box {
width: 100%;
max-width: 480px;
margin: 0 0 4px 0;
}
.xlv-button {
font-size: 11px;
Expand All @@ -87,7 +91,7 @@ Version: Exolve v1.02 January 30 2021
}
}

@media (min-width: 801px) {
@media (min-width: 501px) {
.xlv-wide-box {
width: 480px;
}
Expand All @@ -96,13 +100,18 @@ Version: Exolve v1.02 January 30 2021
}
.xlv-clues-box {
width: 480px;
margin: 0 0 4px 12px;
}
.xlv-button {
font-size: 14px;
padding: 8px;
border-radius: 12px;
}
.xlv-grid-panel {
margin: 0 12px 0 0;
}
.xlv-clues-panel {
margin: 0 12px 8px 0;
}
}

.xlv-clues {
Expand Down Expand Up @@ -146,12 +155,27 @@ Version: Exolve v1.02 January 30 2021
.xlv-clickable:hover {
cursor: pointer;
}
.xlv-flex-row {
.xlv-clues-flex,
.xlv-grid-and-clues-flex {
display: flex;
flex-flow: row wrap;
align-items: flex-start;
justify-content: space-around;
}
.xlv-clues-columnar,
.xlv-grid-and-clues-2-columnar,
.xlv-grid-and-clues-3-columnar {
display: block;
}
.xlv-grid-and-clues-2-columnar {
column-count: 2;
}
.xlv-grid-and-clues-3-columnar {
column-count: 3;
}
.xlv-grid-panel {
break-inside: avoid;
}
.xlv-flex-col {
display: flex;
flex-flow: column wrap;
Expand All @@ -160,6 +184,8 @@ Version: Exolve v1.02 January 30 2021
.xlv-title {
text-align: center;
font-weight: bold;
font-size: 1.5em;
margin: 2px 6px 4px;
}
.xlv-setter {
text-align: center;
Expand All @@ -170,10 +196,19 @@ Version: Exolve v1.02 January 30 2021
padding: 0;
}
.xlv-small-print {
margin: 0 0 4px 0;
margin: 4px 0 6px 0;
font-size: x-small;
}
.xlv-small-print > * {
padding: 4px 4px 0 0;
padding: 2px 4px 0 0;
}
.xlv-credit {
margin: 4px 0 4px 0;
}
.xlv-questions,
.xlv-explanations,
.xlv-submit {
margin: 4px 0 6px 0;
}
.xlv-errors {
font-weight: bold;
Expand Down Expand Up @@ -239,18 +274,20 @@ Version: Exolve v1.02 January 30 2021
outline: none;
}
.xlv-controls-etc {
padding: 8px 0 6px 0;
padding: 0 0 2px 0;
}
.xlv-controls-row {
margin: 6px 0 6px 0;
}
.xlv-clues-box {
overflow-y: auto;
box-sizing: border-box;
margin: 0;
}
.xlv-clues-label {
font-weight: bold;
padding: 0 0 4px 0;
break-inside: avoid;
}
.xlv-explanations {
margin: 10px 0 0 0;
Expand Down Expand Up @@ -301,11 +338,11 @@ Version: Exolve v1.02 January 30 2021
cursor: pointer;
}
.xlv-status {
margin: 6px 0 6px 0;
margin: 2px 0;
}
.xlv-saving {
color: gray;
margin: 0px 0 6px 0;
margin: 0px 0 2px 0;
}
.xlv-solution {
font-weight: bold;
Expand Down Expand Up @@ -378,10 +415,27 @@ Version: Exolve v1.02 January 30 2021
body {
zoom: 100%;
}
.xlv-controls-etc {
.xlv-controls,
.xlv-status,
.xlv-saving,
.xlv-button,
.xlv-small-button,
.xlv-small-print,
.xlv-postscript {
display: none;
}
.xlv-clues-box {
height: auto;
overflow-y: visible;
}
.xlv-clues-columnar,
.xlv-clues-flex {
display: block;
}
.xlv-grid-and-clues-2-columnar,
.xlv-grid-and-clues-3-columnar,
.xlv-grid-and-clues-flex {
display: block;
column-count: 2;
}
}
6 changes: 3 additions & 3 deletions exolve-m.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
See the full Exolve license notice in exolve-m.js.
Version: Exolve v1.02 January 30 2021
Version: Exolve v1.03 February 3 2021
-->
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.02"/>
<script src="exolve-m.js?v1.02"></script>
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.03"/>
<script src="exolve-m.js?v1.03"></script>

<title>Exolve (replace with puzzle title)</title>

Expand Down
Loading

0 comments on commit 129dbd2

Please sign in to comment.