add depends

This commit is contained in:
Swrup 2023-12-18 00:45:46 +01:00
parent 473954be07
commit 49b7a37597
126 changed files with 6991 additions and 8425 deletions

640
src/assets/css/leaflet.css Normal file
View file

@ -0,0 +1,640 @@
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
position: absolute;
left: 0;
top: 0;
}
.leaflet-container {
overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
width: 1600px;
height: 1600px;
-webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
max-width: none !important;
max-height: none !important;
}
.leaflet-container.leaflet-touch-zoom {
-ms-touch-action: pan-x pan-y;
touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
-ms-touch-action: pinch-zoom;
/* Fallback for FF which doesn't support pinch-zoom */
touch-action: none;
touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
-ms-touch-action: none;
touch-action: none;
}
.leaflet-container {
-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
width: 0;
height: 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
-moz-user-select: none;
}
.leaflet-pane { z-index: 400; }
.leaflet-tile-pane { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane { z-index: 500; }
.leaflet-marker-pane { z-index: 600; }
.leaflet-tooltip-pane { z-index: 650; }
.leaflet-popup-pane { z-index: 700; }
.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg { z-index: 200; }
.leaflet-vml-shape {
width: 1px;
height: 1px;
}
.lvml {
behavior: url(#default#VML);
display: inline-block;
position: absolute;
}
/* control positioning */
.leaflet-control {
position: relative;
z-index: 800;
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
position: absolute;
z-index: 1000;
pointer-events: none;
}
.leaflet-top {
top: 0;
}
.leaflet-right {
right: 0;
}
.leaflet-bottom {
bottom: 0;
}
.leaflet-left {
left: 0;
}
.leaflet-control {
float: left;
clear: both;
}
.leaflet-right .leaflet-control {
float: right;
}
.leaflet-top .leaflet-control {
margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
margin-left: 10px;
}
.leaflet-right .leaflet-control {
margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
opacity: 1;
}
.leaflet-zoom-animated {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
-webkit-transition: none;
-moz-transition: none;
transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
visibility: hidden;
}
/* cursors */
.leaflet-interactive {
cursor: pointer;
}
.leaflet-grab {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing;
}
/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
pointer-events: auto;
}
/* visual tweaks */
.leaflet-container {
background: #ddd;
outline: 0;
}
.leaflet-container a {
color: #0078A8;
}
.leaflet-container a.leaflet-active {
outline: 2px solid orange;
}
.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255,255,255,0.5);
}
/* general typography */
.leaflet-container {
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
background-color: #fff;
border-bottom: 1px solid #ccc;
width: 26px;
height: 26px;
line-height: 26px;
display: block;
text-align: center;
text-decoration: none;
color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
background-position: 50% 50%;
background-repeat: no-repeat;
display: block;
}
.leaflet-bar a:hover {
background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
cursor: default;
background-color: #f4f4f4;
color: #bbb;
}
.leaflet-touch .leaflet-bar a {
width: 30px;
height: 30px;
line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
font-size: 22px;
}
/* layers control */
.leaflet-control-layers {
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
background: #fff;
border-radius: 5px;
}
.leaflet-control-layers-toggle {
background-image: url(/assets/img/layers.png);
width: 36px;
height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(/assets/img/layers-2x.png);
background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
width: 44px;
height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
display: block;
position: relative;
}
.leaflet-control-layers-expanded {
padding: 6px 10px 6px 6px;
color: #333;
background: #fff;
}
.leaflet-control-layers-scrollbar {
overflow-y: scroll;
overflow-x: hidden;
padding-right: 5px;
}
.leaflet-control-layers-selector {
margin-top: 2px;
position: relative;
top: 1px;
}
.leaflet-control-layers label {
display: block;
}
.leaflet-control-layers-separator {
height: 0;
border-top: 1px solid #ddd;
margin: 5px -10px 5px -6px;
}
/* Default icon URLs */
.leaflet-default-icon-path {
background-image: url(/assets/img/marker-icon.png);
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
background: #fff;
background: rgba(255, 255, 255, 0.7);
margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
padding: 0 5px;
color: #333;
}
.leaflet-control-attribution a {
text-decoration: none;
}
.leaflet-control-attribution a:hover {
text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
margin-bottom: 5px;
}
.leaflet-control-scale-line {
border: 2px solid #777;
border-top: none;
line-height: 1.1;
padding: 2px 5px 1px;
font-size: 11px;
white-space: nowrap;
overflow: hidden;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: #fff;
background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
border-top: 2px solid #777;
border-bottom: none;
margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
border: 2px solid rgba(0,0,0,0.2);
background-clip: padding-box;
}
/* popup */
.leaflet-popup {
position: absolute;
text-align: center;
margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
}
.leaflet-popup-content {
margin: 13px 19px;
line-height: 1.4;
}
.leaflet-popup-content p {
margin: 18px 0;
}
.leaflet-popup-tip-container {
width: 40px;
height: 20px;
position: absolute;
left: 50%;
margin-left: -20px;
overflow: hidden;
pointer-events: none;
}
.leaflet-popup-tip {
width: 17px;
height: 17px;
padding: 1px;
margin: -10px auto 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
color: #333;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
padding: 4px 4px 0 0;
border: none;
text-align: center;
width: 18px;
height: 14px;
font: 16px/14px Tahoma, Verdana, sans-serif;
color: #c3c3c3;
text-decoration: none;
font-weight: bold;
background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
color: #999;
}
.leaflet-popup-scrolled {
overflow: auto;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
-ms-zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
width: 24px;
margin: 0 auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
background: #fff;
border: 1px solid #666;
}
/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
position: absolute;
padding: 6px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 3px;
color: #222;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.leaflet-tooltip.leaflet-clickable {
cursor: pointer;
pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
position: absolute;
pointer-events: none;
border: 6px solid transparent;
background: transparent;
content: "";
}
/* Directions */
.leaflet-tooltip-bottom {
margin-top: 6px;
}
.leaflet-tooltip-top {
margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
left: 50%;
margin-left: -6px;
}
.leaflet-tooltip-top:before {
bottom: 0;
margin-bottom: -12px;
border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
top: 0;
margin-top: -12px;
margin-left: -6px;
border-bottom-color: #fff;
}
.leaflet-tooltip-left {
margin-left: -6px;
}
.leaflet-tooltip-right {
margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
top: 50%;
margin-top: -6px;
}
.leaflet-tooltip-left:before {
right: 0;
margin-right: -12px;
border-left-color: #fff;
}
.leaflet-tooltip-right:before {
left: 0;
margin-left: -12px;
border-right-color: #fff;
}

411
src/assets/css/style.css Normal file
View file

@ -0,0 +1,411 @@
/* TODO
* - nice color palette
* - nice fonts
* ... */
:root {
--bg: #e8eaf6;
--bg-nav: #feafd6;
--bg-nav-hover: color-mix(in srgb, var(--bg-nav), black 15%);
--heavy-text: black;
--text: #333333;
--light-text: #5a5a5a;
--quote: #FFB300;
--bg-post: #C5E1A5;
--border-post: #9dd162;
--bg-post-highlight: #9dd162;
--border-form: #FFB300;
--bg-form: #FCE4EC;
--bg-error-popup: red;
--border-error-popup: red;
--bg-id: DodgerBlue;
--bg-id-hover: red;
--bg-id-remote: gray;
--bg-id-remote-loading: #FCE4EC;
--bg-id-remote-not-found: black;
--bg-id-remote-ready: blue;
}
/* unset default */
ul {
list-style-type: none;
padding: 0;
margin-block: 0;
}
body {
margin: 0;
color: var(--light-text);
background-color: var(--bg);
font-size: 18px;
display: grid;
grid-template-rows: 3fr 97fr;
height: 100vh;
}
body * {
max-height: 100%;
}
nav {
background-color: var(--bg-nav);
display: flex;
justify-content: space-between;
}
nav div {
display: flex;
flex-direction: row;
}
.logout-btn {
all: unset;
outline: revert;
}
.logout-btn:hover {
cursor: pointer;
}
nav a, nav button,
.sub-nav a, .sub-nav button {
display: flex;
align-items: center;
text-decoration: none;
color: var(--heavy-text);
transition: all 0.3s ease;
padding-inline: 2vw;
}
nav a:hover, nav button:hover,
.sub-nav a:hover, .sub-nav button:hover {
background-color: var(--bg-nav-hover);
}
/* todo: use sub-grid? */
.home-page {
display: grid;
grid-template-columns: 60fr 40fr ;
width: 100%;
height: 100%;
}
.home-left, .home-right {
position: relative;
width: 100%;
height: 100%;
}
#map {
position: sticky !important;
height: 100vh;
width: 100%;
top: 0;
left: 0;
}
.home-left-navigation-div {
display: flex;
margin-bottom: 7vh;
justify-content: flex-end;
margin-right: 7vw;
}
.map-btn-div {
display: flex;
position: absolute;
bottom: 0;
margin-bottom: 7vh;
justify-content: flex-end;
right: 0;
margin-right: 7vw;
z-index: 999;
}
.new-thread-view {
margin-inline: 1vw;
margin-block: 3vw;
}
/* css trick to have a dropdown menu on click */
.dropdown {
position: relative;
display: grid;
grid-template-rows: 1fr;
grid-auto-rows: 0;
.dropdown-content, .dropdown-content-placeholder {
visibility: hidden;
display: flex;
flex-direction: column;
}
.dropdown-content {
transition: 0.2s ease-out;
z-index: 100000;
position: absolute;
top: 100%;
left: 0;
}
li {
background-color: var(--bg);
}
&:focus-within .dropdown-content {
visibility: visible;
}
.dropdown-arrow {
/* need to be block element to apply transform */
display: inline-block;
transition: 0.2s ease-out;
}
&:focus-within .dropdown-arrow {
transform: rotate(90deg);
}
.dropdown-open-btn, .dropdown-close-btn {
all: unset;
cursor: pointer;
user-select: none;
transition: 0.2s ease-out;
}
.dropdown-open-btn {
/* gap to add space between arrow and label */
display: flex;
gap: 3ch;
align-items: center;
}
.dropdown-open-btn:hover, .dropdown-open-btn:focus {
color: var(--bg-id-hover);
}
.dropdown-close-btn {
display: none;
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 99;
}
&:focus-within .dropdown-close-btn:not(:focus) {
display: inline-block;
min-width: 100%;
}
}
.thread-view {
display: flex;
flex-direction: column;
height: 100%;
}
.sub-nav {
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: 1px solid black;
}
#bottom {
margin-top: auto;
}
.thread {
margin-inline: 1vw;
margin-block: 3vw;
}
.thread-subject {
color: var(--light-text);
font-size: 25px;
padding-left: 3vw;
padding-bottom: 1vh;
}
.thread-replies {
color: var(--light-text);
font-size: 20px;
display: flex;
flex-direction: column;
gap: 0.7vh;
}
.post {
background-color: var(--bg-post);
border: 1px solid var(--border-post);
border-top: none;
border-left: none;
padding: 5px;
padding-left: 10px;
width: fit-content;
max-width: 100%;
}
.post-info {
display: flex;
flex-direction: row;
gap: 0.2em;
align-items: center;
margin-bottom: 5px;
}
.post-info * {
text-align: center
}
.post-replies {
display: flex;
gap: 0.2em;
}
.post-id, .post-id-quote {
all: unset;
cursor: revert;
/* revert default focus ring */
outline: revert;
outline-offset: 3px;
background-color: var(--bg-id);
padding: 2px;
text-align: center;
transition: 0.2s ease-out;
display: inline-block;
height: calc(1lh - 2px);
border-radius: 6px;
}
.post-id-quote {
border-radius: 12px;
}
.post-id:hover, .post-id-quote:hover,
.post-id:focus, .post-id-quote:focus {
background-color: var(--bg-id-hover);
}
.post-id-quote.remote {
background-color: var(--bg-id-remote);
}
.post-id-quote.remote.loading {
background-color: var(--bg-id-remote-loading);
}
.post-id-quote.remote.not-found {
background-color: var(--bg-id-remote-not-found);
}
.post-id-quote.remote.ready {
background-color: var(--bg-id-remote-ready);
}
.post-author-nick, .post-link-to-self {
text-decoration: none;
color: unset;
font-style: italic;
transition: 0.2s ease-out;
}
.post-author-nick:hover, .post-link-to-self:hover,
.post-author-nick:focus, .post-link-to-self:focus {
color: var(--bg-id-hover);
}
.post-content {
display: flex;
gap: 10px;
}
/* TODO use image dim? better max-size? */
.post-image-div {
}
.post-image {
max-width: 90vw;
height: auto;
}
.post-image-small {
max-width: 30vw;
max-height: 30vh;
}
.post-comment {
color: var(--text);
padding-top: 10px;
overflow-wrap: break-word;
}
.line-quote {
color: var(--quote);
}
.selected, .highlighted {
background-color: var(--bg-post-highlight);
}
.open-reply-popup-btn {
/* TODO */
}
.reply-popup {
display: table;
position: fixed;
right: 1vw;
top: 40vh;
background-color: var(--bg-form);
border: 2px solid var(--border-form);
padding: 5px;
z-index: 999990;
}
.reply-popup-dragzone {
display: flex;
justify-content: end;
cursor: move;
}
.close-reply-popup-btn {
line-height: 0.5lh;
}
.reply-popup-content {
display: flex;
flex-direction: column;
gap: 1em;
label {
display: block;
}
textarea {
width: 40ch;
height: 15ch;
}
& > div:last-child {
display: flex;
justify-content: center;
margin-top: 1em;
}
}
.error-popup {
display: table;
position: fixed;
right: 1vw;
bottom: 1vh;
padding: 5px;
z-index: 999999;
background-color: var(--bg-error-popup);
border: 2px solid var(--border-error-popup);
border-radius: 12px;
}
.error-popup-dragzone {
display: flex;
justify-content: end;
cursor: move;
}
.close-error-popup-btn {
/* TODO
* - always have good contrast
* - better style
* same for reply-form */
line-height: 0.5lh;
}
.error-popup-content {
padding: 2vw;
font-size: 18px;
color: white;
}
.hidden {
visibility: hidden;
}
.off {
display: none;
}

18
src/assets/img/atom.svg Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="128px" height="128px" id="RSSicon" viewBox="0 0 256 256">
<defs>
<linearGradient x1="0.085" y1="0.085" x2="0.915" y2="0.915" id="RSSg">
<stop offset="0.0" stop-color="#E3702D"/><stop offset="0.1071" stop-color="#EA7D31"/>
<stop offset="0.3503" stop-color="#F69537"/><stop offset="0.5" stop-color="#FB9E3A"/>
<stop offset="0.7016" stop-color="#EA7C31"/><stop offset="0.8866" stop-color="#DE642B"/>
<stop offset="1.0" stop-color="#D95B29"/>
</linearGradient>
</defs>
<rect width="256" height="256" rx="55" ry="55" x="0" y="0" fill="#CC5D15"/>
<rect width="246" height="246" rx="50" ry="50" x="5" y="5" fill="#F49C52"/>
<rect width="236" height="236" rx="47" ry="47" x="10" y="10" fill="url(#RSSg)"/>
<circle cx="68" cy="189" r="24" fill="#FFF"/>
<path d="M160 213h-34a82 82 0 0 0 -82 -82v-34a116 116 0 0 1 116 116z" fill="#FFF"/>
<path d="M184 213A140 140 0 0 0 44 73 V 38a175 175 0 0 1 175 175z" fill="#FFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
src/assets/img/default_avatar.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

BIN
src/assets/img/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
src/assets/img/layers.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 696 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 618 B

8
src/assets/js/dune Normal file
View file

@ -0,0 +1,8 @@
(rule
(target client.js)
(deps
(file ../../client/main.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../client/main.bc.js))))