This commit is contained in:
Michał Gdula 2022-06-01 00:43:07 +01:00
parent ec2453e918
commit f78ba1dd7e
22 changed files with 1204 additions and 0 deletions

BIN
.index.php.swp Normal file

Binary file not shown.

32
css/activities.css Normal file
View file

@ -0,0 +1,32 @@
.activities {
display: flex;
flex-direction: column;
}
.activities div {
margin: 0.5em 0;
padding: 1em;
border-radius: var(--rad);
}
.activities div p,
.activities div h3 {
text-align: left;
color: var(--fg-dark);
}
.activities div:first-child {
margin-top: 0;
}
.activities div:last-child {
margin-bottom: 0;
}
#showcase {
background-color: var(--dv8-orange);
}
#demo {
background-color: var(--dv8-cyan);
}
#more {
background-color: var(--dv8-yellow);
}

67
css/footer.css Normal file
View file

@ -0,0 +1,67 @@
/*
Footer
*/
footer div a,
footer div p {
font-family: "Open Sans", sans-serif;
text-decoration: none;
margin: 1em 0;
display: block;
color: var(--fg-dark);
}
footer .top {
margin: 4em -0.5em 0.5em -0.5em;
padding: 0.5em;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
border-radius: 1em;
background-color: var(--footer);
}
footer .top div {
margin: 0.5em;
padding: 0.5em;
min-width: 20em;
text-align: center;
color: var(--fg-dark);
}
footer .madeBy {
margin: 0.5em auto;
padding: 0;
max-width: 35em;
display: flex;
justify-content: space-around;
}
footer .madeBy hr {
margin: 0;
padding: 0;
}
@media (max-width:470px) {
footer .madeBy {
flex-direction: column;
justify-content: center;
align-items: center;
}
footer .madeBy hr {
display: none;
}
}
footer .madeBy p,
footer .madeBy a {
font-family: 'Lexend Deca', sans-serif;
margin: 0;
padding: 0;
}

110
css/navigation.css Normal file
View file

@ -0,0 +1,110 @@
/*
This CSS is quite messy, this is because all of the
navigation bar is made with CSS and CSS only...
*/
nav {
margin: -0.5em;
padding: 0.5em 1em;
width: calc(100% - 3em);
height: 2.5em;
position: fixed;
z-index: 1;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
background-color: var(--nav);
border-radius: var(--rad);
user-select: none;
}
nav .logo {
margin: 0 0.5em;
max-height: 2.5em;
transition: max-height 0.2s ease;
}
nav .menu {
display: flex;
}
nav .menu a,
nav .menu p {
font-family: 'Lexend Deca', sans-serif;
text-decoration: none;
padding: 0;
margin: 0 0.5em;
color: var(--fg-light);
}
/*
There must be a better way of doing this
*/
nav .menu .about:hover {
color: var(--dv8-orange);
}
nav .menu .team:hover {
color: var(--dv8-cyan);
}
nav .menu .visitors:hover {
color: var(--dv8-yellow);
}
nav .menu .times:hover {
color: var(--dv8-magenta);
}
nav .menu .activities:hover {
color: var(--dv8-lime);
}
/*
Toggler for the menu
*/
nav i {
color: var(--fg-light);
}
#toggler,
nav label {
display: none;
}
@media (max-width:600px) {
nav {
height: auto;
}
nav .logo {
margin: 0;
max-height: 2em;
}
nav .menu {
width: 100%;
height: auto;
max-height: 0px;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
transition: max-height 0.2s ease;
}
nav .menu a {
margin: 1em;
}
nav label {
display: inline-flex;
}
#toggler:checked ~ .menu {
max-height: 275px;
}
}

39
css/team.css Normal file
View file

@ -0,0 +1,39 @@
#team div img {
width: 100%;
max-width: 30em;
min-width: 0;
display: block;
object-fit: contain;
border-radius: var(--rad);
}
#team div {
margin: 0 0 0.5em 0;
display: flex;
flex-direction: column;
text-align: justify;
align-items: center;
}
#teams div p {
margin: 0 !important;
}
#team div span {
margin: 0 0.5em;
}
/*
When page is too thin, the picture and text stacks
*/
@media (min-width:800px) {
#team div {
display: flex;
flex-direction: row;
}
#team div img {
min-width: 20em;
}
}

56
css/times.css Normal file
View file

@ -0,0 +1,56 @@
.times {
display: flex;
justify-content: space-around;
}
.times img {
margin: 0;
width: 70%;
min-height: 20em;
object-fit: cover;
border-radius: var(--rad);
}
.times div {
margin: 0;
padding: 0;
width: 30%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: var(--bg-light);
}
.times div div {
padding: 0;
width: auto;
text-align: center;
display: flex;
flex-direction: row;
}
/*
When page is too thin, the map and text stacks
*/
@media (max-width:900px) {
.times {
display: flex;
flex-direction: column;
}
.times img {
width: auto;
border-radius: var(--rad);
}
.times div {
margin: 0;
padding: 2em;
width: auto;
}
}

12
css/visitors.css Normal file
View file

@ -0,0 +1,12 @@
#visitors div img {
max-width: 15em;
max-height: 15em;
}
#visitors div {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}

BIN
images/dv8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
images/filler.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
images/filler2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

537
images/teams/RSLogo.svg Normal file
View file

@ -0,0 +1,537 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
width="1400"
height="1000"
viewBox="0 0 1400.0001 1000.0001"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs6">
<rect
x="1737.1545"
y="271.59799"
width="16.421373"
height="40.306591"
id="rect545" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath98">
<path
d="M 0,1000 H 1000 V 0 H 0 Z"
id="path96" />
</clipPath>
</defs>
<g
id="g10"
transform="matrix(1.3333333,0,0,-1.3333333,0,1333.3333)">
<text
xml:space="preserve"
transform="scale(0.90094018,-1.1099516)"
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:440.885px;font-family:'Myriad Pro';-inkscape-font-specification:MyriadPro-Regular;letter-spacing:-48.9515px;writing-mode:lr-tb;fill:#e52320;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.27269"
id="text14"
x="-17.020903"
y="-565.13531"><tspan
id="tspan12"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Fira Code';-inkscape-font-specification:'Fira Code Bold';stroke-width:2.27269"
y="-565.13531"
x="-17.020903">RED</tspan></text>
<g
id="g16"
transform="matrix(1.9436428,0,0,1.9436827,760.26032,906.49131)"
style="stroke-width:0.955693">
<path
d="m 0,0 -5.663,4.666 v 3.568 9.94 5.608 l -3.681,4.587 -1.982,3.569 h -3.964 l -2.266,2.293 h -1.982 l -3.397,-1.784 3.964,-5.097 -1.416,-1.529 v -3.569 l 3.398,-6.371 3.398,-5.863 4.247,-4.842 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path18" />
</g>
<g
id="g20"
transform="matrix(1.9436428,0,0,1.9436827,723.38688,959.65063)"
style="stroke-width:0.955693">
<path
d="M 0,0 -5.38,-3.058 -8.495,-1.529 -10.194,0 V 2.549 L -7.928,6.882 0,9.686 3.398,6.882 7.645,4.588 H 3.681"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path22" />
</g>
<g
id="g24"
transform="matrix(1.9436428,0,0,1.9436827,701.92323,959.65063)"
style="stroke-width:0.955693">
<path
d="M 0,0 -3.02,-6.967 0,-11.724 H 2.265 4.53 l 2.549,1.49 1.604,2.078 v 1.189 2.549 l 0.944,2.889 -3.964,-1.529 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path26" />
</g>
<g
id="g28"
transform="matrix(1.9436428,0,0,1.9436827,693.11756,926.62457)"
style="stroke-width:0.955693">
<path
d="m 0,0 v -5.607 l 1.51,-2.719 8.872,1.36 2.266,4.587 V 1.359 3.908 L 11.609,6.757 9.937,5.78 4.53,5.267 1.51,6.757 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path30" />
</g>
<g
id="g32"
transform="matrix(1.9436428,0,0,1.9436827,715.68189,939.7586)"
style="stroke-width:0.955693">
<path
d="m 0,0 1.038,-6.587 v -2.549 l 1.51,-10.025 v -6.457 L 0,-28.337 l 2.69,-1.223 1.746,-1.155 1.133,-5.778 v -4.417 l -1.133,-0.85 v -1.359 l -9.722,-2.039 -2.925,2.039 -1.888,11.384 1.321,1.359 1.133,1.7 -3.964,1.019 v 11.384 l 3.223,1.452"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path34" />
</g>
<g
id="g36"
transform="matrix(1.9436428,0,0,1.9436827,724.30409,855.94855)"
style="stroke-width:0.955693">
<path
d="m 0,0 h 3.587 l 9.061,-9.175 2.642,-3.229 -12.458,-3.398 -4.578,-1.869 h -2.69 l -6.229,-2.719 h -3.115 v 7.816 l 0.944,6.797 2.171,1.869 0.943,1.869 L -4.436,0"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path38" />
</g>
<g
id="g40"
transform="matrix(1.9436428,0,0,1.9436827,709.81151,819.03938)"
style="stroke-width:0.955693">
<path
d="m 0,0 -0.859,-0.375 -3.2,-2.385 -2.265,-5.012 1.322,-3.823 4.153,-4.928 3.02,-2.039 v 1.869 l 18.311,6.627 9.06,4.757 -3.586,8.326 -3.209,3.569 10.948,-18.861 4.153,-3.568 3.209,-4.758 h -5.285 l -6.23,-0.68 -6.795,-1.359 -8.259,-5.559 -4.578,-4.466 H 8.211 l -2.642,1.869 -3.587,6.366 1.038,4.509 -0.849,3.228"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path42" />
</g>
<g
id="g44"
transform="matrix(1.9436428,0,0,1.9436827,789.61243,781.63963)"
style="stroke-width:0.955693">
<path
d="M 0,0 5.663,6.202 7.928,8.666 10.76,7.306 14.724,4.333 18.122,1.699 19.066,0.85 16.989,-0.17 16.045,-2.039 9.25,0.85 H 6.041 L 2.713,-3.738 0,-2.209 1.018,-2.783 5.286,-5.188 9.439,-8.957 10.571,-11.214 H 5.286 0 l -6.607,-1.19 -4.908,-2.379 -5.663,-3.058 -2.36,-3.398 -3.681,-3.739 -3.02,2.549 -2.454,2.379 -2.643,3.08 v 2.187 l 1.571,2.708 8.795,6.887 10.588,3.273 8.872,0.556"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path46" />
</g>
<g
id="g48"
transform="matrix(1.9436428,0,0,1.9436827,832.17276,742.00833)"
style="stroke-width:0.955693">
<path
d="m 0,0 -5.663,1.359 h -6.229 L -17.367,0 l -5.474,-2.379 -3.964,-2.209 -4.908,-3.568 -3.61,-4.078 -1.676,-2.379 -3.209,1.699 -2.831,3.569 -0.756,2.718 v 3.381 l 4.72,5.795 27.749,6.626 9.438,-4.247 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path50" />
</g>
<g
id="g52"
transform="matrix(1.9436428,0,0,1.9436827,846.11508,730.11882)"
style="stroke-width:0.955693">
<path
d="m 0,0 -1.176,0.1 -8.829,0.75 -7.362,-2.209 -6.418,-2.209 -5.286,-2.719 -6.135,-5.607 -1.038,-4.418 -3.209,1.869 -3.044,2.209 -1.675,3.738 8.966,9.346 11.973,5.591 8.887,1.035 5.011,-0.84 4.616,-0.859 3.209,-2.379 -5.663,9.685 -2.832,5.268 -0.944,2.968 -2.076,3.149 3.02,2.888 2.832,-1.869 L -3.209,19.54 0,13.083 1.888,7.646 3.398,3.398 4.53,-0.51 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path54" />
</g>
<g
id="g56"
transform="matrix(1.9436428,0,0,1.9436827,854.92057,729.12813)"
style="stroke-width:0.955693">
<path
d="M 0,0 3.398,-1.529 5.097,-4.758 3.398,-5.947 H 1.699 l -4.153,0.85 -2.076,0.679 -3.965,-0.849 -4.719,-0.68 -4.908,-2.039 -9.627,-5.097 -4.719,-2.719 -3.587,-3.908 -2.076,-1.02 -2.643,4.928"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path58" />
</g>
<g
id="g60"
transform="matrix(1.9436428,0,0,1.9436827,864.82694,717.23863)"
style="stroke-width:0.955693">
<path
d="m 0,0 h 3.209 l 3.02,-1.869 1.699,-4.248 3.021,-5.437 0.755,-3.059 0.755,-2.209 -1.133,-1.869 H 9.061 l -2.832,0.51 -3.02,-0.51 -2.454,1.02 -2.265,-0.34 -2.077,-0.68 -1.51,-1.869 -4.53,-4.757 -3.776,-1.869 -3.397,-0.68 -3.776,0.68 -2.359,1.529 -1.416,0.679 -1.888,0.17 -3.209,1.02 -1.51,1.529 -1.322,1.02 -2.642,0.849 -2.832,1.359 -2.265,1.53 -1.322,2.039 0.189,1.869 8.306,6.626"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path62" />
</g>
<g
id="g64"
transform="matrix(1.9436428,0,0,1.9436827,867.02831,779.32781)"
style="stroke-width:0.955693">
<path
d="m 0,0 v -2.039 -1.96 -2.968 -1.869 l 2.832,-3.398 0.755,1.529 1.321,0.68 1.133,3.908 v 2.118 0.9 L 4.53,0 3.02,1.019 H 1.51 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path66" />
</g>
<g
id="g68"
transform="matrix(1.9436428,0,0,1.9436827,882.07132,758.19125)"
style="stroke-width:0.955693">
<path
d="m 0,0 0.755,-3.908 v -7.136 -1.87 -4.927 -4.248 l -0.377,-4.928 -2.681,3.23 -1.661,2.717 v 6.117 3.909 l -0.755,5.267 v 3.228 l -0.189,1.19 3.209,3.058 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path70" />
</g>
<g
id="g72"
transform="matrix(1.9436428,0,0,1.9436827,881.48435,703.10338)"
style="stroke-width:0.955693">
<path
d="m 0,0 3.134,3.025 0.755,3.398 2.265,2.888 1.132,4.078 v 2.294 l 1.133,3.738 v 0.935 l 1.322,1.699 v 1.381 1.678 l 1.51,4.077 1.51,0.85 2.643,0.68 0.943,-1.53 V 28.002 24.264 20.186 18.147 L 13.705,19.421 13.327,15.36 11.628,11.69 10.873,7.952 10.307,5.403 8.174,1.325 6.154,-1.393 3.889,-4.112 2.378,-4.282"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path74" />
</g>
<g
id="g76"
transform="matrix(1.9436428,0,0,1.9436827,887.57475,688.83618)"
style="stroke-width:0.955693">
<path
d="m 0,0 5.04,3.738 3.266,4.928 1.51,4.078 1.133,1.869 1.321,2.718 2.076,3.229 1.888,2.209 1.699,-2.209 V 15.292 L 15.857,11.384 14.346,8.666 12.27,6.117 11.892,4.928 10.382,3.058 8.967,0 H 6.796 5.04 l -2.775,-1.189 -1.51,-1.02 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path78" />
</g>
<g
id="g80"
transform="matrix(1.9436428,0,0,1.9436827,922.43048,736.72424)"
style="stroke-width:0.955693">
<path
d="m 0,0 3.02,2.124 2.454,1.104 3.964,1.53 2.454,-1.36 V 1.189 L 10.194,-1.869 8.306,-3.058 5.946,-4.078 3.398,-4.928 H 1.51 L 0,-1.614 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path82" />
</g>
<g
id="g84"
transform="matrix(1.9436428,0,0,1.9436827,948.11337,738.3754)"
style="stroke-width:0.955693">
<path
d="m 0,0 3.02,-6.797 v -3.398 h 2.454 l -1.51,-1.529 -2.342,0.849 -2.943,1.53 v 3.483 l -1.888,0.934 v 0.85 l 1.888,4.418 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path86" />
</g>
<g
id="g88"
transform="matrix(1.9436428,0,0,1.9436827,910.68951,755.54899)"
style="stroke-width:0.955693">
<path
d="M 0,0 -1.321,-7.561 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path90" />
</g>
<g
id="g92"
transform="matrix(1.9436428,0,0,1.9436827,38.770601,-632.75415)"
style="stroke-width:0.955693">
<g
id="g94"
clip-path="url(#clipPath98)"
style="stroke-width:0.955693">
<g
id="g100"
transform="translate(441.7481,670.766)"
style="stroke-width:0.955693">
<path
d="m 0,0 h -1.076 l -1.133,-0.68 h -1.415 v -0.637 -1.996 -2.719 l -1.416,-1.869 -0.472,-0.85 h -0.85 v 1.445 l 0.378,0.849 v 1.444 l -0.378,0.638 -0.755,1.571 -1.057,0.85 -0.642,0.34 v -1.19 -1.571 l 0.642,-1.912 0.585,-0.934 0.472,-1.19 -1.699,1.275 -0.755,0.424 -0.377,1.105 -1.227,0.849 -0.566,1.275 -0.378,0.594 -0.472,0.765 -0.189,0.765 v 0.424 0.51 L -13.44,0 v 0.425 c 0,0 -0.661,0.34 -0.944,0.594 -0.283,0.255 -0.567,0.68 -0.567,0.68 l -0.66,0.425 -0.567,0.595 v 0.424 l -0.566,0.765 -1.132,0.68 -0.378,1.189 2.265,0.34 2.454,-1.02 5.361,0.089 L -7.117,3.908 -6.173,2.719 -5.04,0.935 -4.285,0 h 5.097 1.51 L 5.531,2.379 V 5.607 L 3.926,9.175"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path102" />
</g>
<g
id="g104"
transform="translate(446.8071,679.2618)"
style="stroke-width:0.955693">
<path
d="m 0,0 2.454,2.379 3.209,2.464 2.926,1.359 2.454,1.529 0.755,0.68 1.605,0.934 1.132,0.595 1.794,1.02 1.132,-0.765 1.227,-0.85 1.605,-3.313 V 3.738 L 19.726,2.209 18.877,0.68 17.839,-0.68 15.007,-2.379 13.025,-3.993 10.146,-5.013 9.344,-5.522 H 7.834 7.079 5.569 l -1.227,0.34 -1.794,-0.34 H 1.133 L 0.472,-5.777 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path106" />
</g>
<g
id="g108"
transform="translate(467.0999,688.6071)"
style="stroke-width:0.955693">
<path
d="M 0,0 1.888,0.68 H 5.569 L 7.928,0.34 9.722,0 11.043,-0.68 h 1.133 l 2.17,-0.594 1.322,-0.68 1.699,-1.189 1.416,-2.464 0.471,-1.147 -0.66,-1.912 -1.322,-2.209 -0.283,-2.124 -2.171,0.425 -2.454,0.425 -2.265,0.425 -2.643,0.425 -1.227,0.424 -1.887,0.51 -1.965,1.02 L 1.51,-7.986 0.566,-6.754 0,-4.758 -1.605,0 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path110" />
</g>
<g
id="g112"
transform="translate(484.7498,673.4846)"
style="stroke-width:0.955693">
<path
d="m 0,0 1.605,-1.529 1.982,-1.36 1.887,-0.679 2.077,-0.935 2.265,-1.019 1.982,-0.68 1.227,-2.124 1.038,-2.209 0.472,-2.464 v -3.228 -3.398 -2.804 -1.189 l 1.888,-2.719 0.661,1.784 v 1.19 l 0.66,2.039 1.133,2.209 0.472,1.274 1.793,3.143 1.416,2.549 2.171,4.843 1.132,2.378 v 2.719 1.869 2.124 1.529 L 22.558,6.457 18.783,7.561 15.951,8.368 13.497,9.515 H 10.288 8.117 5.569 L 3.303,8.963 1.605,8.368 -0.661,2.124 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path114" />
</g>
<g
id="g116"
transform="translate(492.3006,673.4846)"
style="stroke-width:0.955693">
<path
d="M 0,0 4.247,-6.202 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path118" />
</g>
<g
id="g120"
transform="translate(511.8382,669.9164)"
style="stroke-width:0.955693">
<path
d="m 0,0 1.699,-2.634 1.51,-3.143 v -5.183 -3.313 L 2.171,-17.416 1.605,-18.946 0,-21.664 l -1.227,-1.614 -3.775,-1.53 1.415,2.889 0.944,2.549 0.095,1.444 0.849,2.124 0.472,1.614 v 1.784 2.634 l -1.038,1.359 -1.322,0.51 -0.36,0.623 3.05,6.343 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path122" />
</g>
<g
id="g124"
transform="translate(429.5347,659.9764)"
style="stroke-width:0.955693">
<path
d="m 0,0 -0.566,2.889 -1.133,1.869 -0.849,1.954 -1.416,1.189 -1.133,0.595 h -1.604 c 0,0 -1.605,-0.255 -1.888,0 -0.283,0.255 -2.076,-0.425 -2.076,-0.425 l -1.888,-1.359 -0.472,-0.935 0.377,-1.501 1.039,-1.727 1.227,-1.445 L -8.023,0 h 1.51 1.983 l 1.604,-0.595 h 1.133 l -0.661,1.19 -2.076,0.934 -1.511,1.529 -0.472,1.275 -0.943,1.104 1.982,-0.594 2.076,-1.445 0.944,-1.359 1.888,-1.614 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path126" />
</g>
<g
id="g128"
transform="translate(404.1452,666.688)"
style="stroke-width:0.955693">
<path
d="m 0,0 h -2.548 l -0.944,-1.529 -1.133,-1.203 h 1.982 l 1.51,-0.836 0.755,-1.529 -0.094,-0.765 -1.133,-1.444 -0.471,-0.85 3.303,-0.595 h 1.51 l 2.643,1.445 1.888,1.359 2.642,2.124 1.982,1.091 0.592,1.32 L 11.232,0 V 0.68 L 10.67,2.271 4.638,0.116 1.681,0.428 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path130" />
</g>
<g
id="g132"
transform="translate(425.0042,669.4916)"
style="stroke-width:0.955693">
<path
d="M 0,0 4.153,-0.85 3.964,0.85 2.858,1.948 1.133,3.398 0,5.182 -1.51,7.051 -3.587,6.372 V 4.503 l 0.661,-1.402 2.454,-2.082 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path134" />
</g>
<g
id="g136"
transform="translate(398.5765,663.4481)"
style="stroke-width:0.955693">
<path
d="m 0,0 h -8.211 l -11.232,-3.132 -1.982,-0.934 h -1.133 l -0.566,-0.765 -0.661,-0.68 v -0.764 l 1.416,-1.02 c 0,0 0.566,-0.255 0.944,-0.51 0.377,-0.254 1.982,-1.359 1.982,-1.359 l 0.944,-1.614 0.849,-0.935 0.472,-1.274 h 1.133 c 0,0 0.755,0.34 1.132,0.34 0.378,0 0.661,-0.68 1.605,-0.34 0.944,0.34 3.02,0.68 3.02,0.68 l 2.36,0.17 2.737,0.594 2.171,1.275 c 0,0 0.566,0.085 1.227,0.085 0.66,0 2.737,0.934 2.737,0.934 l 0.944,1.359 0.66,1.349 0.378,1.03 0.566,0.595 1.605,2.294 -0.116,1.189 -1.489,1.627 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path138" />
</g>
<g
id="g140"
transform="translate(372.8802,655.9833)"
style="stroke-width:0.955693">
<path
d="M 0,0 -1.675,-1.699 V -3.823 L -2.147,-5.617 V -8.241 L -2.714,-9.6 v -3.059 -2.463 l 1.357,-1.445 2.419,-1.444 0.849,1.359 1.794,2.379 1.982,1.529 2.076,0.935 0.755,0.934 v 2.634 2.719 L 7.197,-3.313 5.338,-1.07 3.327,0.17 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path142" />
</g>
<g
id="g144"
transform="translate(383.003,645.2787)"
style="stroke-width:0.955693">
<path
d="m 0,0 h 3.964 l 2.265,-0.51 2.549,-0.51 4.719,-1.104 6.041,-2.549 3.398,-3.738 3.775,-3.313 2.548,-1.954 3.115,-1.36 2.926,-1.529 3.492,-1.189 1.699,-0.425 2.832,-1.529 2.831,-2.889 1.793,-2.888 -1.793,0.509 -2.831,0.765 -6.419,0.85 -3.397,0.085 -2.266,-0.17 -1.604,-0.51 -2.077,0.934 -3.586,0.765 -4.908,0.51 -2.549,-0.34 -3.964,-0.085 -3.87,-0.34 -8.022,-0.595 -1.794,0.34 -5.568,0.935 -3.021,5.267 0.472,8.326 0.189,0.935 3.451,4.361 4.005,2.775 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path146" />
</g>
<g
id="g148"
transform="translate(394.1404,621.7454)"
style="stroke-width:0.955693">
<path
d="m 0,0 2.36,-3.058 2.548,-1.785 1.793,-1.189 h 2.832 l 3.115,-1.614 2.17,-0.85 h 4.248 l 3.303,-0.34 3.398,-0.339 h 2.643 l 3.398,-0.51 -5.475,-1.784 -2.926,-0.85 h -1.604 -3.87 l -4.436,0.85 -3.115,-0.085 H 7.976 l -3.351,0.594 -3.209,1.445 -3.587,1.869 -3.964,1.487 -3.587,3.185 -2.454,1.954 -0.094,1.785 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path150" />
</g>
<g
id="g152"
transform="translate(392.819,672.5926)"
style="stroke-width:0.955693">
<path
d="m 0,0 h -2.548 l -2.454,0.892 h -1.511 l -1.415,0.51 -0.85,0.594 h -1.699 l 1.322,-1.104 1.699,-1.529 1.793,-0.977 1.133,-0.977 1.604,-1.472 0.85,-0.907 1.51,-0.425 2.171,-0.51 2.359,-0.934 h 0.661 l 0.661,0.934 H 6.324 7.74 l 0.849,0.765 1.551,0.867 -2.306,1.257 -1.888,0.17 -2.34,0.743 -3.149,2.399 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path154" />
</g>
<g
id="g156"
transform="translate(374.7915,677.1378)"
style="stroke-width:0.955693">
<path
d="m 0,0 -0.755,-0.595 v -1.274 -1.784 l -0.755,-0.51 -0.401,-0.382 0.955,-1.614 2.844,-1.487 2.454,-2.294 3.209,-1.189 3.114,-1.615 2.712,-1.558 3.329,0.612 h 3.398 3.681 l 0.944,0.508 -0.661,0.948 -1.416,0.85 -2.53,0.74 -4.171,1.129 -5.38,4.333 -3.02,2.208 -2.171,1.105 -1.699,0.849 -0.944,0.085 -2.171,0.34 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path158" />
</g>
<g
id="g160"
transform="translate(371.5825,671.7005)"
style="stroke-width:0.955693">
<path
d="m 0,0 -2.454,-1.529 -2.171,-1.213 c 0,0 -1.604,-0.457 -1.888,-0.429 -0.283,0.028 -2.454,-0.397 -2.925,-0.397 -0.472,0 -3.587,-0.34 -3.87,-0.425 -0.283,-0.085 -3.304,0 -3.304,0 l -1.604,-0.038 -0.85,2.016 v 1.293 l 0.378,1.996 1.51,0.51 c 0,0 1.133,0.595 2.265,0.595 1.133,0 2.643,0.849 2.643,0.849 l 1.321,0.425 1.416,0.425 c 0,0 0.755,0.85 1.038,0.765 0.284,-0.085 1.322,0.006 1.322,0.006 l 1.887,0.588 c 0,0 1.605,0.85 2.171,0.595 0.567,-0.255 1.888,0.255 2.266,0 0.377,-0.255 2.548,-0.17 2.548,-0.595 0,-0.424 0.755,-0.594 0.755,-0.594 V 1.784 L 1.699,1.274 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path162" />
</g>
<g
id="g164"
transform="translate(350.7234,669.9867)"
style="stroke-width:0.955693">
<path
d="m 0,0 -1.699,-1.028 -0.944,-2.271 -1.321,-1.699 -1.322,-2.153 v -1.33 -1.444 l 0.567,-0.68 0.944,-0.34 h 1.132 0.661 L 0,-10.18 l 0.661,1.274 1.132,0.935 0.661,1.432 v 1.456 l -0.661,1.784 v 0.51 l 0.85,0.472 -0.85,2.015 v 1.294 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path166" />
</g>
<g
id="g168"
transform="translate(344.0221,660.4011)"
style="stroke-width:0.955693">
<path
d="m 0,0 -1.416,-2.464 -1.51,-1.784 -0.849,-1.274 -1.322,-1.529 -0.472,-1.954 -0.377,-1.955 0.849,-0.509 h 1.605 l 1.793,1.434 1.699,0.69 0.661,0.934 0.755,0.85 0.66,1.189 0.756,0.637 0.471,1.487 0.378,1.359 v 0.765 l 0.378,0.765 -2.077,0.34 -0.566,1.614 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path170" />
</g>
<g
id="g172"
transform="translate(337.5096,648.9319)"
style="stroke-width:0.955693">
<path
d="M 0,0 H -1.793 -3.115 L -3.681,-0.595 -4.153,-1.359 H -5.852 -6.89 l -0.85,-0.51 -0.471,-1.274 h 1.887 1.51 l 2.454,0.679 1.039,0.595 L 0,-1.189 1.793,0 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path174" />
</g>
<g
id="g176"
transform="translate(381.3985,675.8635)"
style="stroke-width:0.955693">
<path
d="m 0,0 -2.737,1.274 -2.265,0.669 -1.605,1.031 -1.911,1.104 -2.714,2.549 -1.416,0.509 -1.698,1.869 -2.266,-0.764 -1.51,0.425 1.133,-1.53 V 5.99 l -2.36,-1.487 -1.038,-0.935 0.944,-1.625 0.66,-0.669 1.794,-0.588 2.64,0.933 5.195,0.005 2.547,-0.35 5.38,-1.869 3.115,-0.679 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path178" />
</g>
<g
id="g180"
transform="translate(347.3256,685.6336)"
style="stroke-width:0.955693">
<path
d="M 0,0 6.041,0.51 10.005,0.85 13.686,0 15.29,-0.765 17.084,-2.634 14.724,-5.267 11.892,-5.905 8.542,-6.712 H 6.984 l -3.586,-0.679 -1.793,0.679 -2.266,0.807 -2.076,0.892 -0.85,1.742 v 1.402 l 1.322,1.104 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path182" />
</g>
<g
id="g184"
transform="translate(341.9456,682.9999)"
style="stroke-width:0.955693">
<path
d="m 0,0 -2.171,-1.954 -1.321,-1.317 -0.85,-1.487 -0.66,-1.104 c 0,0 0.755,-1.699 1.132,-1.869 0.378,-0.17 1.227,-1.19 1.227,-1.19 h 2.171 l 1.605,0.51 v 0.935 1.019 l 1.227,0.595 v 1.402 1.402 1.26 L 1.793,0.765 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path186" />
</g>
<g
id="g188"
transform="translate(335.6219,675.7785)"
style="stroke-width:0.955693">
<path
d="M 0,0 -1.321,-2.294 -2.548,-3.041 -3.209,-4.8 -3.587,-5.792 v -1.939 -1.36 c 0,0 1.605,-0.084 1.794,0 0.188,0.085 1.321,0.595 1.321,0.595 L 0,-7.249 c 0,0 1.416,0.151 1.793,0.429 0.378,0.278 1.888,2.02 1.888,2.02 v 1.614 l 0.661,1.487 -1.888,1.189 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path190" />
</g>
<g
id="g192"
transform="translate(330.1475,668.5293)"
style="stroke-width:0.955693">
<path
d="M 0,0 H -1.605 L -3.115,-0.397 -4.247,-0.86 H -5.38 l 1.793,-0.981 1.322,-0.038 h 1.793 l 2.36,0.038 -0.661,0.981 0.661,1.289 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path194" />
</g>
<g
id="g196"
transform="translate(381.8704,678.9219)"
style="stroke-width:0.955693">
<path
d="m 0,0 -2.737,1.444 -3.02,1.487 -1.699,1.147 -1.133,0.765 h -1.133 l -1.415,-0.765 -0.567,-0.51 2.714,-2.549 2.837,-1.699 4.454,-1.807 2.171,-1.209 1.699,-0.637 3.775,-1.104 5.003,-0.892 -0.095,0.722 -5.852,2.464 -2.328,1.954 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path198" />
</g>
<g
id="g200"
transform="translate(380.1714,681.853)"
style="stroke-width:0.955693">
<path
d="m 0,0 -2.171,0.51 h -1.321 l -2.265,0.637 4.719,-2.634 2.737,-1.444 1.879,1.019 -0.589,0.68 -1.931,0.34 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path202" />
</g>
<g
id="g204"
transform="translate(352.5167,695.1489)"
style="stroke-width:0.955693">
<path
d="m 0,0 -2.265,2.464 -3.021,1.019 -1.793,0.935 -2.359,0.34 h -1.227 l -1.888,0.594 -0.472,0.17 h -1.416 c 0,0 -0.094,0.34 -0.661,-0.17 -0.566,-0.509 -1.415,-0.934 -1.415,-0.934 l -1.039,-0.425 -0.943,-0.17 V 2.817 l 0.377,-0.948 c 0,0 0.566,-2.209 0.566,-2.464 0,-0.255 0.472,-0.679 0.472,-0.679 0,0 1.039,0.254 1.511,0 0.471,-0.255 0.377,0.17 1.132,-0.34 0.755,-0.51 1.632,-0.741 1.888,-0.85 1.604,-0.679 1.038,-0.51 2.265,-0.764 1.227,-0.255 2.643,-0.34 2.643,-0.34 0,0 -0.095,0.17 0.566,0 0.661,-0.17 1.416,-0.51 1.793,-0.51 0.378,0 0.85,-0.17 1.699,0 0.85,0.17 1.322,0.425 1.322,0.425 L -1.51,-3.398 -0.771,-3.487 0,-1.274 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path206" />
</g>
<g
id="g208"
transform="translate(330.7138,695.8887)"
style="stroke-width:0.955693">
<path
d="M 0,0 -1.416,-2.014 -3.303,-3.798 V -4.893 L -1.652,-6.092 0,-7.621 h 0.944 l 1.416,1.104 0.943,1.624 0.756,1.082 0.377,1.287 0.283,0.51 L 3.303,2.573 1.321,0.365 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path210" />
</g>
<g
id="g212"
transform="translate(326.1834,690.2213)"
style="stroke-width:0.955693">
<path
d="m 0,0 -1.793,-1.614 c 0,0 -0.85,-0.85 -0.944,-1.36 -0.095,-0.509 -0.566,-1.784 -0.566,-1.784 l -1.039,-0.594 0.567,-1.869 1.132,-1.147 2.077,0.509 1.793,1.402 1.888,1.869 1.038,1.699 0.377,0.935 -3.303,2.728 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path214" />
</g>
<g
id="g216"
transform="translate(320.8978,682.9999)"
style="stroke-width:0.955693">
<path
d="M 0,0 H -1.888 L -3.492,0.34 H -4.814 L -5.38,-0.637 h 0.944 l 1.746,-0.51 v -1.232 h 0.519 l 2.643,1.232 H 1.51 2.643 Z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path218" />
</g>
<g
id="g220"
transform="translate(371.2049,684.1043)"
style="stroke-width:0.955693">
<path
d="m 0,0 -3.209,3.059 -0.944,1.826 -1.699,1.317 -1.604,1.954 -1.133,1.104 -1.605,2.524 -1.746,2.999 -1.274,1.895 -1.888,3.287 -1.132,2.634 -1.605,2.464 c 0,0 -0.755,1.189 -1.227,1.316 -0.472,0.128 -2.265,1.147 -2.265,1.147 l -1.793,0.68 -1.038,-1.02 c 0,0 -0.378,-1.699 -0.378,-1.954 0,-0.254 0.661,-1.869 0.661,-1.869 0,0 0.377,-2.039 0.755,-2.293 0.377,-0.255 1.321,-1.7 1.321,-1.7 l 0.566,-1.529 c 0,0 0.472,-0.627 0.472,-1.163 0,-0.536 1.699,-2.575 1.699,-2.575 l 1.227,-1.359 0.708,-1.445 0.897,-1.529 4.53,-2.549 1.036,-1.104 L -9.513,4.884 -9.155,4.503 -4.153,0.765 -6.418,0 l -2.171,0.765 -1.605,0.764 -2.17,0.501 -1.511,0.349 h -2.359 l -1.605,2.506 -1.51,2.251 -0.377,1.445 1.038,1.189 h 1.557 l 2.372,-0.51 0.79,-0.169"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path222" />
</g>
<g
id="g224"
transform="translate(346.6649,715.4537)"
style="stroke-width:0.955693">
<path
d="m 0,0 -4.247,3.653 -2.832,1.36 H -8.4 c 0,0 -0.283,0.849 -0.661,0 -0.377,-0.85 -0.661,-1.736 -0.661,-1.736 0,0 -0.377,-0.219 -0.472,-0.728 -0.094,-0.51 -0.094,-1.02 0,-1.53 0.095,-0.509 0.472,-2.208 0.472,-2.208 l 0.755,-0.935 c 0,0 0.284,-0.595 0.661,-1.019 0.378,-0.425 1.605,-1.105 1.605,-1.105 l 1.569,-1.444 h 1.168 l 1.038,-0.425 h 1.699 l 1.372,-0.522 1.271,3.496 1.793,-0.68 v 0.68 l -1.416,1.189 -0.849,0.765 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path226" />
</g>
<g
id="g228"
transform="translate(334.3948,717.3228)"
style="stroke-width:0.955693">
<path
d="M 0,0 -1.51,-1.869 -2.36,-3.058 -3.681,-5.013 -5.097,-5.777 V -6.839 L -6.418,-7.646 H -9.25 l 1.133,-1.614 0.755,-0.68 1.699,-0.68 1.038,0.425 1.652,0.17 1.557,0.934 1.038,1.445 1.416,1.784 1.888,0.849 0.377,1.02 -1.227,4.673 z"
style="fill:none;stroke:#1d1d1b;stroke-width:0.955693;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path230" />
</g>
</g>
</g>
<text
xml:space="preserve"
transform="scale(0.84349008,-1.1855504)"
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:321.392px;font-family:'Myriad Pro';-inkscape-font-specification:MyriadPro-Regular;letter-spacing:-3.92385px;writing-mode:lr-tb;fill:#1d1d1b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79686"
id="text234"
x="-6.9098315"
y="-288.16714"><tspan
x="-6.9098315"
y="-288.16714"
id="tspan232"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;stroke-width:1.79686">Scorpion</tspan></text>
<text
xml:space="preserve"
transform="matrix(0.75000002,0,0,-0.75000002,0,1000)"
id="text543"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect545);display:inline;fill:#000000;fill-opacity:1;stroke:none" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 853 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="256px" height="54px" viewBox="0 0 256 54" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 58 (84663) - https://sketch.com -->
<title>MR_Logo_No_Strap_PMS390</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0897790055 0.0405859873 124.789365 0.0405859873 124.789365 53.9793631 0.0897790055 53.9793631"></polygon>
</defs>
<g id="Home-Page" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Home-Page__1.2-(Desktop)" transform="translate(-45.000000, -22.000000)">
<g id="Menu">
<g id="MR_Logo_No_Strap_PMS390" transform="translate(45.000000, 22.000000)">
<path d="M28.8178135,41 L28.8178135,26.0571327 C28.8178135,24.5079054 28.4136794,23.3693621 27.605068,22.6415027 C26.7967999,21.9143284 25.8374536,21.5502274 24.7284027,21.5502274 C23.6179783,21.5502274 22.6514215,21.9061079 21.8273589,22.6178687 C21.0026095,23.3296295 20.5909216,24.4287828 20.5909216,25.914986 L20.5909216,41 L14.4087351,41 L14.4087351,26.0571327 C14.4087351,24.5079054 14.004601,23.3693621 13.1963329,22.6415027 C12.3877215,21.9143284 11.4287186,21.5502274 10.3193243,21.5502274 C9.17799753,21.5502274 8.20320011,21.9143284 7.39458866,22.6415027 C6.58632056,23.3693621 6.18184315,24.5079054 6.18184315,26.0571327 L6.18184315,41 L0,41 L0,16.2846358 L6.03934899,16.2846358 L6.03934899,18.562065 C6.83147919,17.7396695 7.7750309,17.1077163 8.86897404,16.6644928 C9.96257382,16.2219543 11.0802088,16 12.2215355,16 C15.074509,16 17.2620519,17.0436647 18.7838209,19.1313367 C19.8300371,18.0561599 20.9394314,17.265619 22.1126906,16.7593714 C23.285263,16.2534663 24.6487433,16 26.2024447,16 C27.438882,16 28.5874193,16.1900997 29.6497734,16.5692717 C30.7117841,16.9491286 31.591471,17.4872308 32.2895207,18.182208 C33.2402829,19.1313367 33.9297487,20.1828794 34.3579179,21.3368362 C34.7860871,22.4918206 35,23.780046 35,25.2032252 L35,41 L28.8178135,41" id="Fill-1" fill="#55595A"></path>
<path d="M55.6657341,30.4267179 L50.6472224,30.4267179 C48.2756986,30.4267179 47.0904644,31.3509724 47.0904644,33.1994815 C47.0904644,34.0769126 47.3986464,34.7660319 48.0164176,35.2671788 C48.6327816,35.7683256 49.5425518,36.0187294 50.7446727,36.0187294 C51.7191751,36.0187294 52.4987771,35.9410296 53.0834785,35.7839334 C53.66818,35.6275159 54.2201635,35.3143416 54.7401327,34.8444104 C55.3568485,34.2804929 55.6657341,33.2466443 55.6657341,31.7425252 L55.6657341,30.4267179 Z M55.8120854,40.7648648 L55.8120854,38.6503441 C54.9350332,39.4965595 54.0337064,40.0994965 53.1077531,40.4594943 C52.1821517,40.8191528 51.0043054,41 49.5752697,41 C46.7495644,41 44.5887724,40.279665 43.0950044,38.8383165 C41.697983,37.4288623 41,35.595961 41,33.339952 C41,31.272594 41.7384407,29.5733771 43.217081,28.2416227 C44.694666,26.9105468 46.8466629,26.2444999 49.67272,26.2444999 L55.6657341,26.2444999 L55.6657341,25.0226788 C55.6657341,23.6759952 55.3005595,22.6967739 54.5695068,22.0856937 C53.8388059,21.4749528 52.6282416,21.1695824 50.9395731,21.1695824 C49.7701702,21.1695824 48.8361254,21.3185353 48.1381425,21.6157625 C47.4391041,21.9140077 46.7495644,22.438227 46.0674127,23.1901169 L42.0230517,19.3838439 C43.2244689,18.0995915 44.507857,17.2146958 45.8721604,16.7288175 C47.2364638,16.2432785 49.0067513,16 51.1833747,16 C58.394341,16 62,18.882697 62,24.6467339 L62,40.7648648 L55.8120854,40.7648648 L55.8120854,40.7648648 Z" id="Fill-2" fill="#55595A"></path>
<polyline id="Fill-3" fill="#55595A" points="84.1878199 41 77.9767548 30.6378424 75.308113 33.5982618 75.308113 41 69 41 69 7 75.308113 7 75.308113 26.2920322 83.7025804 16.1205468 91.3206648 16.1205468 82.2955612 26.1489418 92 41 84.1878199 41"></polyline>
<path d="M110.627813,24.8417773 C110.546989,24.4509618 110.409832,24.0371173 110.215993,23.5985505 C109.860156,22.8172582 109.327274,22.1995394 108.616648,21.7457329 C107.906023,21.2929423 107.033748,21.0657004 106.000175,21.0657004 C104.998441,21.0657004 104.134564,21.2929423 103.407494,21.7457329 C102.680774,22.1995394 102.139495,22.8172582 101.784357,23.5985505 C101.590168,24.0371173 101.452662,24.4509618 101.372187,24.8417773 C101.291363,25.2329315 101.234331,25.6938499 101.20284,26.22521 L110.797509,26.22521 C110.76497,25.6938499 110.708288,25.2329315 110.627813,24.8417773 Z M101.20284,30.399553 C101.20284,32.0261447 101.694785,33.3391357 102.680774,34.3392035 C103.665712,35.3406258 105.014186,35.840829 106.726895,35.840829 C108.051227,35.840829 109.125738,35.6609997 109.949377,35.3010024 C110.773367,34.9416825 111.604704,34.3557979 112.445139,33.5423327 L116.27328,37.1538201 C114.884218,38.4983067 113.478712,39.4753454 112.057461,40.085275 C110.635511,40.6952046 108.842327,41 106.678611,41 C105.062821,41 103.568793,40.7964644 102.196177,40.3900704 C100.822511,39.9840152 99.5950984,39.3114332 98.5132401,38.3733406 C97.4306821,37.4355866 96.5748525,36.1449472 95.9450514,34.5041317 C95.3149005,32.8623002 95,30.8533595 95,28.4766323 C95,24.5366432 96.0010338,21.4724329 98.0045009,19.283663 C100.007268,17.0952316 102.672376,16 106.000175,16 C109.424193,16 112.113444,17.0871038 114.068626,19.2599567 C116.022409,21.4334869 117,24.239637 117,27.6794229 L117,30.399553 L101.20284,30.399553 L101.20284,30.399553 Z" id="Fill-4" fill="#55595A"></path>
<path d="M164.818087,21.6348448 C164.229004,21.0994421 163.461673,20.8315712 162.515748,20.8315712 L158.384205,20.8315712 L158.384205,26.6406399 L162.515748,26.6406399 C163.461673,26.6406399 164.229004,26.3731081 164.818087,25.8370272 C165.406478,25.3016245 165.70102,24.6010912 165.70102,23.7361055 C165.70102,22.8707808 165.406478,22.1709257 164.818087,21.6348448 Z M165.92184,39 L161.537981,30.2246848 L158.384205,30.2246848 L158.384205,39 L154,39 L154,17 L162.799214,17 C163.913696,17 164.928497,17.1753029 165.842926,17.5252304 C166.757701,17.8758361 167.530224,18.3596991 168.161533,18.9774976 C168.792149,19.5956352 169.270131,20.311766 169.596168,21.1248728 C169.92186,21.9389969 170.085225,22.8090688 170.085225,23.7361055 C170.085225,25.1988841 169.695849,26.4243087 168.918134,27.4130576 C168.140074,28.4018064 167.162306,29.1023396 165.984832,29.5143183 L171,39 L165.92184,39 L165.92184,39 Z" id="Fill-5" fill="#55595A"></path>
<polyline id="Fill-6" fill="#55595A" points="177 39 177 17 192 17 192 20.8315712 181.445705 20.8315712 181.445705 25.9916464 190.43293 25.9916464 190.43293 29.8232175 181.445705 29.8232175 181.445705 35.1687679 192 35.1687679 192 39 177 39"></polyline>
<path d="M206.095761,23.4889183 L203.229231,31.4918159 L208.86618,31.4918159 L206.095761,23.4889183 Z M211.382169,39 L210.044665,35.1070559 L201.987139,35.1070559 L200.617831,39 L196,39 L204.248349,17 L207.719848,17 L216,39 L211.382169,39 L211.382169,39 Z" id="Fill-7" fill="#55595A"></path>
<g id="Group-12" transform="translate(131.000000, 0.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-9"></g>
<polyline id="Fill-8" fill="#55595A" mask="url(#mask-2)" points="90.5424724 38.6595287 90.5424724 16.3434268 94.9164365 16.3434268 94.9164365 34.7732484 105.08011 34.7732484 105.08011 38.6595287 90.5424724 38.6595287"></polyline>
<polyline id="Fill-10" fill="#A6B739" mask="url(#mask-2)" points="114.328384 0.0405859873 124.789365 0.0405859873 124.789365 54 114.30145 54 114.328384 48.580051 119.688881 48.552879 119.655041 5.4343949 114.328384 5.4343949 114.328384 0.0405859873"></polyline>
<polyline id="Fill-11" fill="#A6B739" mask="url(#mask-2)" points="10.5507597 54 0.0897790055 54 0.0897790055 0.0405859873 10.5776934 0.0405859873 10.5507597 5.46087898 5.18991713 5.48770701 5.22410221 48.606535 10.5507597 48.606535 10.5507597 54"></polyline>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8 KiB

BIN
images/wiggleAfter.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
images/wiggleBefore.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

101
index.php Normal file
View file

@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="DV8 Game Expo 2022">
<title>Game Expo</title>
<link rel="icon" type="image/x-icon" href="images/dv8.png">
<link rel="stylesheet" href="stylesheet.css">
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&display=swap">
</head>
<?php
include"ui/navigationRoot.html";
?>
<body>
<!-- Root of all the text sections -->
<main>
<header>
<img src="images/wiggleBefore.png">
<h1>Welcome to DV8s Game Expo!</h1>
<img src="images/wiggleAfter.png">
</header>
<!-- Root of sections -->
<!-- Teams -->
<section id="team">
<h2>The Team</h2>
<?php
include"ui/teams.html";
?>
</section>
<section id="about">
<h2>About</h2>
<div>
<p>The DV8 Game Expo is a panel run by its students, showcasing their hard work they have done during this year and a chance to show off their skills to others!</p>
</div>
</section>
<!-- Visitors -->
<section id="visitors">
<h2>Featured Visitors</h2>
<div>
<img src="images/visitors/EpicGames.png" alt="Epic Games">
<img src="images/visitors/makereal.svg" alt="Make Real">
</div>
</section>
<!-- Times -->
<section id="times">
<h2>Times and Dates</h2>
<div class="times">
<div>
<h3>Friday - June</h3>
<div>
<i class="material-icons">event</i>
<p>24/6/2022</p>
</div>
<div>
<i class="material-icons">schedule</i>
<p>11:00 to 16:00</p>
</div>
<div>
<i class="material-icons">place</i>
<p>Richmond Pl, Brighton</p>
</div>
</div>
<img src="images/temporaryDirections.png" alt="directions">
</div>
</section>
<!-- Activities -->
<section id="activities">
<h2>Activities</h2>
<div class="activities">
<div id="showcase">
<h3>Game Showcase and Demos</h3>
<p>Panles showing off the different teams' work and a chance to play some of the amazing works</p>
</div>
<div id="demo">
<h3>Wren's Panel</h3>
<p>A panel discusing how we could sucessfully implament non-binary chacters into video games. From NPCs to the main cast to the main character themselves.</p>
</div>
<div id="more">
<h3>More!</h3>
<p>And many other things?!</p>
</div>
</div>
</section>
</main>
</body>
<?php
include"ui/footer.html";
?>
</html>

158
stylesheet.css Normal file
View file

@ -0,0 +1,158 @@
/*
I seperated out the different elements CSS into different files
this is to keep the CSS semi tidy and easier to configure if
any problems occur.
*/
/* UI */
@import url("css/navigation.css");
@import url("css/footer.css");
/* Main */
@import url("css/team.css");
@import url("css/visitors.css");
@import url("css/times.css");
@import url("css/activities.css");
:root {
--nav: #151515;
--footer: #FFFFFF;
--bg-dark: #151515;
--bg: #E8E3E3;
--bg-light: #FFFFFF;
--fg-dark: #151515;
--fg-light: #E8E3E3;
--rad: 15px;
--dv8-orange: #F36023;
--dv8-yellow: #FFE11C;
--dv8-cyan: #00AAB0;
--dv8-magenta:#D51E90;
--dv8-lime: #C0D939;
}
* {
font-family: "Open Sans", sans-serif;
}
/*
Page Structure
*/
html {
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 1em 1em 0;
background-image: url();
background-color: var(--bg);
}
main {
margin: 0 auto;
padding: 4em 1em 1em 1em;
max-width: 1000px;
min-height: 100vh;
background-color: var(--bg);
}
section {
margin: 0;
padding: 6em 0 0;
}
section div {
padding: 1em;
background-color: var(--bg-light);
border-radius: var(--rad);
}
section p {
margin: 0.5em;
font-weight: 500;
color: var(--fg-dark)
}
header {
margin: 3em 0 0;
display: flex;
justify-content: space-around;
align-items: center;
}
header img {
margin: -0.38em;
padding: 0;
width: 4.5em;
height: 5em;
}
/*
Text and headings
*/
h1 {
font-family: 'Lexend Deca', sans-serif;
text-align: center;
font-size: 50px;
}
h2 {
font-family: 'Lexend Deca', sans-serif;
margin: -0.5em 0.5em;
padding: 0.5em 0.5em 0.5em 1.5em;
position: relative;
border-radius: var(--rad);
}
h3 {
font-family: 'Lexend Deca', sans-serif;
margin: 0.5em 0;
}
#about h2 {
background-color: var(--dv8-orange);
}
#team h2 {
background-color: var(--dv8-cyan);
}
#visitors h2 {
background-color: var(--dv8-yellow);
}
#times h2 {
background-color: var(--dv8-magenta);
}
#activities h2 {
background-color: var(--dv8-lime);
}
@media (max-width:600px) {
header img {
width: 3em;
height: 3em;
}
h1 {
font-size: 40px;
}
h2 {
padding-left: 0.5em;
text-align: center;
}
main {
padding: 3em 0 0 0;
}
section {
padding: 5.5em 0 0;
}
}

31
ui/footer.html Normal file
View file

@ -0,0 +1,31 @@
<footer>
<div class="top">
<div class="links">
<h3>Social Links</h3>
<a href="https://twitter.com/dv8sussex">Twitter</a>
<a href="https://www.instagram.com/dv8sussex">Instagram</a>
<a href="https://en-gb.facebook.com/dv8brighton">Facebook</a>
</div>
<div class="contactInformation">
<h3>Contact Information</h3>
<p>sussy@domain.com</p>
<p>sussy@domain.com</p>
</div>
<div class="locations">
<h3>Locations</h3>
<p>Brighton</p>
<p>01273 550 432</p>
<p>Bexhill location</p>
<p>01424 213 890</p>
</div>
</div>
<div class="madeBy">
<p>Made by Michal</p>
<hr>
<a href="https://github.com/Fluffy-Bean">GitHub</a>
<hr>
<p>michal-gdula@pm.me</p>
</div>
</footer>

12
ui/navigationRoot.html Normal file
View file

@ -0,0 +1,12 @@
<nav>
<img src="images/dv8.png" alt="DV8 logo" class="logo">
<input type="checkbox" id="toggler">
<label for="toggler"><i class="material-icons">menu</i></label>
<div class="menu">
<a href="#team" class="team">The Team</a>
<a href="#about" class="about">About</a>
<a href="#visitors" class="visitors">Visitors</a>
<a href="#times" class="times">Times</a>
<a href="#activities" class="activities">Activities</a>
</div>
</nav>

15
ui/teams.html Normal file
View file

@ -0,0 +1,15 @@
<div>
<img src="images/filler2.png" alt="" loading="lazy">
<span></span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div>
<p>Again is an innovative game made towards gamers from all ends. Speedrunners and achievers, to casual gamers admiring works and the environment. With: high quality, custom made, assets; fast, fun gameplay and many ways to finish. You are surely going to have a fun time playing! Made by Leon, Bartek, Michal and Nathan.</p>
<span></span>
<img src="images/teams/RSLogo.svg" alt="Red Scorpion logo" loading="lazy">
</div>
<div>
<img src="images/teams/Spooked_Mouse.svg" alt="Spooked Mouse SVG logo" loading="lazy">
<span></span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>