diff --git a/client/assets/styles/styles.less b/client/assets/styles/styles.less index 3ff5b031..f44ab217 100644 --- a/client/assets/styles/styles.less +++ b/client/assets/styles/styles.less @@ -11,7 +11,7 @@ html, body, #mnml { background-color: black; font-family: 'Jura'; color: whitesmoke; - font-size: 14pt; + font-size: 12pt; user-select: none; -moz-user-select: none; @@ -28,6 +28,12 @@ html, body, #mnml { overflow-x: hidden; } +@media (min-width: 1921px) { + html, body, #mnml { + font-size: 14pt; + } +} + html { box-sizing: border-box; margin: 0; @@ -397,34 +403,18 @@ header { transition-duration: 0.5s; transition-delay: 0; transition-timing-function: ease; -} -.menu-construct .controls { - display: flex; - justify-content: flex-end; -} + button:not(:last-child) { + margin-bottom: 1em; + } -.menu-construct .controls h2 { - flex: 1; -} - -.menu-construct .controls button { - color: #444; - flex: 0; - margin: 0 1em 0 0; - border: none; -} - -.menu-construct .controls button:hover, .menu-construct .controls button:active { - color: whitesmoke; -} - -.menu-construct .avatar { - background-size: contain; - background-repeat: no-repeat; - background-position: center; - pointer-events: none; - height: 100%; + .avatar { + background-size: contain; + background-repeat: no-repeat; + background-position: center; + pointer-events: none; + height: 100%; + } } .spawn-btn.menu-construct { @@ -493,7 +483,7 @@ header { grid-area: constructs; /* poor man's
*/ - padding-bottom: 2em; + padding: 0.5em 2em 0 0; margin-bottom: 2em; border-bottom: 0.1em solid whitesmoke; } diff --git a/client/assets/styles/vbox.less b/client/assets/styles/vbox.less index 44951ef3..81b03437 100644 --- a/client/assets/styles/vbox.less +++ b/client/assets/styles/vbox.less @@ -62,6 +62,12 @@ border: 1px solid black; } } + svg { + stroke-width: 8px; + } + .white { + stroke: black; + } } button { @@ -84,18 +90,9 @@ stroke-width: 8px; } - ellipse.white { + .white { stroke: black; } - - rect.white { - stroke: black; - } - - polygon.white { - stroke: black; - } - } } diff --git a/client/src/components/anims/decay.jsx b/client/src/components/anims/decay.jsx index 3af2ab0c..2759b8fd 100644 --- a/client/src/components/anims/decay.jsx +++ b/client/src/components/anims/decay.jsx @@ -27,18 +27,9 @@ class Decay extends Component { version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"> - - - - - - - - - - {times(15, () => ( - + {times(20, () => ( + ))} diff --git a/client/src/components/anims/restrict.jsx b/client/src/components/anims/restrict.jsx index 42d27113..f8c1395d 100644 --- a/client/src/components/anims/restrict.jsx +++ b/client/src/components/anims/restrict.jsx @@ -25,7 +25,6 @@ class Restrict extends Component { version="1.1" id="restrict" xmlns="http://www.w3.org/2000/svg" - style={{ transform: 'scale(3)' }} viewBox="0 0 128 128"> diff --git a/server/src/names.rs b/server/src/names.rs index 36833363..71508889 100644 --- a/server/src/names.rs +++ b/server/src/names.rs @@ -12,7 +12,6 @@ const FIRSTS: [&'static str; 36] = [ "concave", "convex", "distorted", - "dub", "emotive", "emotionless", "fierce", @@ -37,10 +36,11 @@ const FIRSTS: [&'static str; 36] = [ "subterranean", "synthetic", "sweet", + "terrestrial", "weary", ]; -const LASTS: [&'static str; 41] = [ +const LASTS: [&'static str; 42] = [ "artifact", "assembly", "console", @@ -72,6 +72,7 @@ const LASTS: [&'static str; 41] = [ "river", "river", "scaffold", + "structure", "shape", "signal", "synthesiser",