prerelease changes
15
.prettierrc
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"singleQuote": false,
|
||||||
|
"semi": true,
|
||||||
|
"trailingComma": "none",
|
||||||
|
"jsxSingleQuote": false,
|
||||||
|
"jsxBracketSameLine": true,
|
||||||
|
"printWidth": 200,
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"vueIndentScriptAndStyle": true,
|
||||||
|
"arrowParens": "always",
|
||||||
|
"bracketSameLine": false,
|
||||||
|
"endOfLine": "lf"
|
||||||
|
}
|
@ -9,10 +9,9 @@ pinned = true
|
|||||||
|
|
||||||
<iframe
|
<iframe
|
||||||
class="video"
|
class="video"
|
||||||
height="315"
|
|
||||||
src="https://www.youtube.com/embed/YXbvzCNCBt0"
|
src="https://www.youtube.com/embed/YXbvzCNCBt0"
|
||||||
title="YouTube video player"
|
title="YouTube video player"
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||||
allowfullscreen
|
allowfullscreen
|
||||||
></iframe>
|
></iframe>
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
* {
|
* {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Kanit', sans-serif;
|
font-family: 'coolvetica', sans-serif;
|
||||||
background-color: var(--clr-lavender);
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
color: var(--clr-Murrey);
|
||||||
|
background-color: var(--clr-Lavender);
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
margin: 0 var(--container-size);
|
margin: 0 var(--container-size);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
nav {
|
nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
background-color: var(--clr-melon);
|
background-color: var(--clr-Melon);
|
||||||
padding: 1rem var(--container-size);
|
padding: 1rem var(--container-size);
|
||||||
|
|
||||||
.nav-right, .nav-left {
|
.nav-right, .nav-left {
|
||||||
@ -21,8 +21,9 @@ nav {
|
|||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
font-weight: bold;
|
font-weight: 700;
|
||||||
color: var(--clr-murrey);
|
font-size: normal;
|
||||||
|
color: var(--clr-Murrey);
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@ -58,4 +59,4 @@ nav {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
215
sass/main.scss
@ -1,130 +1,157 @@
|
|||||||
main {
|
main {
|
||||||
|
display: flex;
|
||||||
|
gap: 2rem;
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
margin-left: 20vw;
|
||||||
|
margin-right: 20vw;
|
||||||
|
|
||||||
|
.news-wrapper {
|
||||||
|
max-width: 80vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-wrapper {
|
||||||
|
min-width: 20vw;
|
||||||
|
|
||||||
|
}
|
||||||
|
aside{
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 2rem;
|
flex-direction: column;
|
||||||
margin-top: 2rem;
|
align-items: center;
|
||||||
margin-bottom: 2rem;
|
padding: 2rem;
|
||||||
|
background-color: var(--clr-LavenderLight);
|
||||||
|
border-radius: 15px;
|
||||||
|
top: 0;
|
||||||
|
|
||||||
section#news {
|
section#vstupenky-wrapper {
|
||||||
width: 60vw;
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
||||||
|
a.vstupenky {
|
||||||
|
width: 80%;
|
||||||
|
background-color: var(--clr-Melon);
|
||||||
|
padding: 1rem 2rem;
|
||||||
|
color: var(--clr-Murrey);
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 2rem;
|
||||||
|
text-align: center;
|
||||||
|
border-color: var(--clr-Murrey);
|
||||||
|
border-radius: 15px;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside{
|
.infotable {
|
||||||
width: 40vw;
|
display: flex;
|
||||||
display: flex;
|
flex-direction: column;
|
||||||
flex-direction: column;
|
gap: 2rem;
|
||||||
align-items: center;
|
|
||||||
padding: 2rem;
|
|
||||||
background-color: var(--clr-cards);
|
|
||||||
border-radius: 15px;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
|
|
||||||
section#vstupenky-wrapper {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
width: 100%;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
a.vstupenky {
|
|
||||||
width: 80%;
|
|
||||||
background-color: orange;
|
|
||||||
padding: 1rem 2rem;
|
|
||||||
color: var(--clr-murrey);
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
border-color: var(--clr-murrey);
|
|
||||||
border-radius: 15px;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.infotable {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-wrapper {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 4rem;
|
|
||||||
color: var(--clr-murrey);
|
|
||||||
text-align: left;
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-wrapper:nth-child(even) {
|
|
||||||
flex-direction: row-reverse;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
.info-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
align-items: center;
|
||||||
flex-direction: column;
|
justify-content: center;
|
||||||
align-items: center;
|
gap: 4rem;
|
||||||
margin: .5rem;
|
color: var(--clr-Murrey);
|
||||||
font-size: 0.7rem;
|
text-align: left;
|
||||||
a, p {
|
|
||||||
color: var(--clr-murrey);
|
.text {
|
||||||
|
h3 {
|
||||||
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
p {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info-wrapper:nth-child(even) {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
margin: .5rem;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 300;
|
||||||
|
a, p {
|
||||||
|
color: var(--clr-Murrey);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 500px) {
|
@media only screen and (max-width: 500px) {
|
||||||
#vstupenky-wrapper {
|
#vstupenky-wrapper {
|
||||||
width: 100vw !important;
|
}
|
||||||
}
|
.vstupenky {
|
||||||
.vstupenky {
|
font-size: 1.5rem !important;
|
||||||
font-size: 1.5rem !important;
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/* Extra small devices (phones, 600px and down) */
|
/* Extra small devices (phones, 600px and down) */
|
||||||
@media only screen and (max-width: 600px) {
|
@media only screen and (max-width: 600px) {
|
||||||
aside, main section#news {
|
|
||||||
width: 95vw !important;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
background-color: red;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Small devices (portrait tablets and large phones, 600px and up) */
|
/* Small devices (portrait tablets and large phones, 600px and up) */
|
||||||
@media only screen and (min-width: 600px) and (max-width: 768px) {
|
@media only screen and (min-width: 600px) and (max-width: 768px) {
|
||||||
aside, main section#news {
|
|
||||||
width: 90vw !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Medium devices (landscape tablets, 768px and up) */
|
/* Medium devices (landscape tablets, 768px and up) */
|
||||||
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
||||||
|
|
||||||
aside, main section#news {
|
|
||||||
width: 60vw !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Large devices (laptops/desktops, 992px and up) */
|
/* Large devices (laptops/desktops, 992px and up) */
|
||||||
@media only screen and (max-width: 992px) {
|
@media only screen and (max-width: 992px) {
|
||||||
main {
|
main {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin-left: 2vw !important;
|
||||||
|
margin-right: 2vw !important;
|
||||||
}
|
}
|
||||||
.aside-wrapper {
|
.aside-wrapper {
|
||||||
order: -1;
|
order: -1;
|
||||||
}
|
}
|
||||||
|
.info-wrapper {
|
||||||
|
gap: 1rem !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Extra large devices (large laptops and desktops, 1200px and up) */
|
/* Extra large devices (large laptops and desktops, 1200px and up) */
|
||||||
@media only screen and (max-width: 1200px) {
|
@media only screen and (max-width: 1500px) {
|
||||||
|
main {
|
||||||
|
margin-left: 10vw;
|
||||||
|
margin-right: 10vw;
|
||||||
|
}
|
||||||
|
.aside-wrapper {
|
||||||
|
min-width: 40vw !important;
|
||||||
|
}
|
||||||
|
.news-wrapper {
|
||||||
|
max-width: 70vw !important;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1500px) and (max-width: 2000px) {
|
||||||
|
main {
|
||||||
|
margin-left: 15vw;
|
||||||
|
margin-right: 15vw;
|
||||||
|
}
|
||||||
|
.aside-wrapper {
|
||||||
|
min-width: 35vw !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,30 +1,42 @@
|
|||||||
.news-wrapper {
|
.news-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
color: var(--clr-murrey);
|
color: var(--clr-Murrey);
|
||||||
|
|
||||||
.news-card {
|
.news-card {
|
||||||
position: relative;
|
position: relative;
|
||||||
background-color: var(--clr-cards);
|
background-color: var(--clr-LavenderLight);
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
.pin-img {
|
.pin-img {
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 1rem;
|
right: 1rem;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
h3 {
|
||||||
|
font-family: "coolveltica", sans-serif;
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: normal;
|
||||||
}
|
}
|
||||||
.pinned {
|
.date {
|
||||||
order: -1;
|
margin-bottom: 1rem;
|
||||||
}
|
|
||||||
.pinned .pin-img {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
iframe.video {
|
|
||||||
border-radius: 15px;
|
|
||||||
aspect-ratio: 16/9;
|
|
||||||
width: min(560px, 100%);
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
.pinned {
|
||||||
|
order: -1;
|
||||||
|
}
|
||||||
|
.pinned .pin-img {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
iframe.video {
|
||||||
|
aspect-ratio: 16/9;
|
||||||
|
}
|
||||||
|
.instagram-media, img:not(.pin-img), iframe.video {
|
||||||
|
border-radius: 15px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
max-width: none !important;
|
||||||
|
min-width: 0 !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,50 @@
|
|||||||
:root {
|
:root {
|
||||||
--clr-blue: #576ca8;
|
--clr-TrueBlue: #576ca8; /* TrueBlue */
|
||||||
--clr-lavender: #d3d2ef;
|
--clr-TrueBlueDark: #444B64;
|
||||||
--clr-murrey: #79214c;
|
--clr-Lavender: #d3d2ef;
|
||||||
--clr-blush: #cf6379;
|
--clr-LavenderLight: #E3E2F7;
|
||||||
--clr-melon: #ffadad;
|
--clr-Murrey: #792a4c;
|
||||||
|
--clr-Blush: #cf6379;
|
||||||
|
--clr-Melon: #ffadad;
|
||||||
--clr-cards: #e4e3ff;
|
--clr-cards: #e4e3ff;
|
||||||
--container-size: 10vw;
|
--container-size: 10vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
TrueBlue - 576CA8H
|
||||||
|
TrueBlueDarker - 444B64
|
||||||
|
Lavender - D3D2EF
|
||||||
|
LavenderLighter - E3E2F7
|
||||||
|
Murrey - 792A4C
|
||||||
|
Blush - CF6379
|
||||||
|
Melon - FFADAD
|
||||||
|
|
||||||
|
Coolvetica Light
|
||||||
|
font-family: "coolvetica", sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;
|
||||||
|
|
||||||
|
Coolvetica Book
|
||||||
|
font-family: "coolvetica", sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
|
||||||
|
Coolvetica Regular
|
||||||
|
font-family: "coolvetica", sans-serif;
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
|
||||||
|
Coolvetica Bold
|
||||||
|
font-family: "coolvetica", sans-serif;
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
|
||||||
|
Coolvetica Heavy
|
||||||
|
font-family: "coolvetica", sans-serif;
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: normal;
|
||||||
|
use.typekit.net
|
||||||
|
|
||||||
|
*/
|
||||||
|
40
static/svg/dancing.svg
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#444B64;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M89,88.6c-1.1,0.3-2.2,0.6-3.3,1c-0.1,0-0.2,0.3-0.2,0.5c0.2,2.5,0.3,5,0.5,7.6c0.1,0.9,0.1,1.8,0.2,2.5
|
||||||
|
c-1.2-1.2-2.6-2.4-3.9-3.7c-2.2-2.2-4.3-4.4-6.4-6.6c-0.3-0.3-0.5-0.7-0.5-1.1c-0.2-4-0.3-8-0.6-12c-0.4-4.7-0.7-9.4-0.6-14.1
|
||||||
|
c0.1-5.1,0.4-10.1,1.1-15.1c0.1-0.6-0.2-0.8-0.6-1.2C70.4,42.6,66.5,38.5,63,34c-4.5-5.6-8.3-11.7-11.6-18.1c-0.2-0.4-0.2-0.7,0-1.1
|
||||||
|
c0.3-0.7,0.6-1.4,0.8-2.1c0.4-1.8-0.3-3.3-1.4-4.6c-0.2-0.3-0.5-0.5-0.7-0.8c1.2-2.2,4.3-3,6.5-1.8c1,0.6,1.8,1.3,2.2,2.4
|
||||||
|
c3.4,7.6,7.8,14.5,13,21c3.9,4.8,8.3,9.2,13.3,12.9c0.9,0.7,2.1,1.1,3.3,1.5c2.8,0.9,5.7,1.7,8.5,2.4c1.4,0.4,2.5,1.1,3.4,2.2
|
||||||
|
c4.4,5.7,8.7,11.5,13.1,17.2c2.1,2.8,1,6.6-2.3,7.8c-6.6,2.4-13.3,4.8-19.9,7.1c-1,0.3-2,0.7-3,0.7c-2.9,0.2-4.3-1.7-4.8-4
|
||||||
|
c-0.5-2.5,1.2-4.5,3-5.2c4.9-1.8,9.7-3.7,14.5-5.5c0.1-0.1,0.3-0.1,0.5-0.2c-1.7-2.2-3.3-4.3-5-6.6c0,0.4-0.1,0.7-0.1,0.9
|
||||||
|
c0,1.7-0.1,3.4-0.1,5.1c0,0.4-0.1,0.5-0.5,0.6c-3.3,1.3-6.7,2.5-10,3.8c-2.5,1-4,2.8-4.4,5.4c-0.4,2.6,0.5,4.9,2.6,6.6
|
||||||
|
c2,1.5,4.3,1.5,6.6,0.7c2.1-0.7,4.2-1.5,6.3-2.2c0.1,0,0.3-0.1,0.5-0.2c0.1,0.3,0.1,0.6,0.2,0.9c1.5,7.7,4,15.1,7,22.3
|
||||||
|
c3.4,8.3,7.6,16.2,12.5,23.7c2,3.1,4,6.2,6,9.4c1.4,2.3,0.9,5.2-1.2,6.7c-2.4,1.7-5.6,1.1-7.2-1.4c-1.5-2.3-3-4.7-4.5-7.1
|
||||||
|
c-2.5-4-5-7.9-7.3-11.9c-3.9-6.8-7.1-13.8-9.7-21.2c-1.5-4.2-2.7-8.4-4.1-12.6C89,88.8,89,88.7,89,88.6z"/>
|
||||||
|
<path class="st0" d="M31.1,117.6c1.1-2.8,2.2-5.6,3.1-8.4c1.7-5,3.1-10.2,3.9-15.4c0.4-2.8,0.7-5.6,1.1-8.4c0-0.2,0.3-0.4,0.4-0.4
|
||||||
|
c3.7-1.1,7.4-2.2,11.1-3.3c3.7-1.1,7.5-2.2,11.2-3.3c0.4-0.1,0.6-0.1,0.9,0.2c3.2,3.6,6.4,7.2,9.7,10.7c3.2,3.4,6.4,6.7,9.7,10
|
||||||
|
c1.9,2,3.8,4,5.8,5.9c-4.2,7.5-10.7,12.3-18.6,15.3c0,0.1,0,0.2,0.1,0.4c2.2,5.3,4.8,10.4,8,15.1c0.2,0.3,0.5,0.7,0.7,1
|
||||||
|
c1.6,2.3,1.2,5.4-1.1,7c-2.3,1.7-5.4,1.1-7.1-1.2c-2.8-3.9-5.2-8-7.2-12.3c-1.1-2.4-2.1-4.8-3.2-7.2c-0.1-0.2-0.3-0.4-0.4-0.3
|
||||||
|
c-1.6,0.1-3.2,0.3-4.8,0.5c-0.1,0-0.1,0-0.2,0.1c0.1,1.4,0.2,2.7,0.4,4.1c0.4,3.6,0.8,7.1,1.3,10.7c0.1,1,0.3,2,0,3.1
|
||||||
|
c-0.6,2.4-2.7,3.9-5.2,3.7c-2.3-0.2-4.3-2-4.6-4.3c-0.4-2.9-0.8-5.8-1.1-8.6c-0.3-2.9-0.6-5.8-0.9-8.7c0-0.4-0.2-0.5-0.5-0.6
|
||||||
|
c-4.3-0.8-8.4-2.4-12.1-4.9C31.4,117.8,31.3,117.7,31.1,117.6C31.2,117.6,31.1,117.6,31.1,117.6z"/>
|
||||||
|
<path class="st0" d="M57.9,69.1c-0.3-1.5-0.6-2.9-0.8-4.3c-0.1,0-0.1,0-0.2,0c-0.2,0.7-0.5,1.5-0.7,2.2c-0.1,0.4-0.3,0.6-0.7,0.8
|
||||||
|
c-5.3,1.6-10.6,3.2-15.9,4.8c-0.1,0-0.2,0.1-0.4,0.1c-0.1-0.6-0.1-1.2-0.2-1.7c-0.2-4.4,0.6-8.6,2.3-12.7c0.2-0.4,0.1-0.6-0.2-0.9
|
||||||
|
C33.8,51.8,28.8,44.8,26.3,36c-0.4-1.3-0.1-2.4,0.6-3.5C32.2,25,37.5,17.4,42.8,9.9c1.3-1.9,3.4-2.4,5.3-1.4c1.9,1,2.7,3.1,1.7,5
|
||||||
|
C49,14.9,48,16.4,47,17.7C43,23.5,39,29.3,34.9,35c-0.3,0.4-0.4,0.8-0.2,1.3c1.9,4.9,4.7,9.1,8.5,12.6c0.7,0.7,1.6,1.1,2.5,1.1
|
||||||
|
c2.1,0,4.1,0.5,6.2,0.8c2.6,0.4,5.2,0.9,7.8,1.4c1.9,0.3,3.1,1.5,3.5,3.4c1,5.1,2,10.2,3,15.3c0.5,2.5-0.6,4.3-3.1,5
|
||||||
|
c-7.8,2.3-15.6,4.6-23.4,6.9c-1,0.3-2.1,0.6-3.1,0.9c-2.2,0.6-4.4-0.5-5.1-2.6c-0.7-2.2,0.5-4.4,2.8-5.1c5-1.5,9.9-2.9,14.9-4.4
|
||||||
|
c2.7-0.8,5.4-1.6,8.1-2.4C57.6,69.2,57.7,69.1,57.9,69.1z"/>
|
||||||
|
<path class="st0" d="M78.1,30.1c-0.1-5.5,4.3-10.2,10-10.1c5.6,0,10,4.5,10,10.3c0,5.6-4.5,10-10,10.1C82.5,40.3,78,35.6,78.1,30.1z
|
||||||
|
"/>
|
||||||
|
<path class="st0" d="M49.7,30c6-2,10.9,2.2,11.4,6.8c0.7,5.2-2.9,9.7-7.8,10c-2.9,0.2-5.4-0.8-7.2-3.1c-1.9-2.2-2.3-4.8-1.7-7.7
|
||||||
|
c-1.7-0.1-3-0.8-3.9-2.2c-0.7-1-1-2-0.9-3.2c0.2-2.7,2-4.5,4.7-4.8C46.3,25.8,48.9,26.9,49.7,30z"/>
|
||||||
|
<path class="st0" d="M87,110.3c0.1,0.9,0.2,1.7,0.3,2.5c0.4,2.9,0.7,5.8,1.1,8.7c0.5,3.7,1.1,7.4,1.8,11.1c0.4,2.1,0.9,4.3,1.3,6.4
|
||||||
|
c0.5,2.6-1.1,5.2-3.6,5.8c-2.6,0.7-5.3-0.8-6-3.4c-0.6-2.2-1-4.4-1.4-6.6c-0.7-3.9-1.3-7.9-2-11.9c-0.2-1.3-0.3-2.7-0.5-4
|
||||||
|
c-0.1-0.4,0.1-0.6,0.4-0.8c2-1.3,3.9-2.6,5.5-4.2c1-1,1.8-2.1,2.7-3.1C86.7,110.7,86.8,110.5,87,110.3z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
@ -1,12 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
<svg fill="#79214c" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
viewBox="0 0 310 310" xml:space="preserve">
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
<g id="XMLID_834_">
|
<style type="text/css">
|
||||||
<path id="XMLID_835_" d="M81.703,165.106h33.981V305c0,2.762,2.238,5,5,5h57.616c2.762,0,5-2.238,5-5V165.765h39.064
|
.st0{fill:#792A4C;}
|
||||||
c2.54,0,4.677-1.906,4.967-4.429l5.933-51.502c0.163-1.417-0.286-2.836-1.234-3.899c-0.949-1.064-2.307-1.673-3.732-1.673h-44.996
|
</style>
|
||||||
V71.978c0-9.732,5.24-14.667,15.576-14.667c1.473,0,29.42,0,29.42,0c2.762,0,5-2.239,5-5V5.037c0-2.762-2.238-5-5-5h-40.545
|
<path class="st0" d="M86.3,140V83.1h19l3.6-23.5H86.3V44.3c0-6.4,3.2-12.7,13.3-12.7h10.3v-20c0,0-9.3-1.6-18.2-1.6
|
||||||
C187.467,0.023,186.832,0,185.896,0c-7.035,0-31.488,1.381-50.804,19.151c-21.402,19.692-18.427,43.27-17.716,47.358v37.752H81.703
|
C73,10,60.9,21.3,60.9,41.7v17.9H40.2v23.5h20.7V140H86.3z"/>
|
||||||
c-2.762,0-5,2.238-5,5v50.844C76.703,162.867,78.941,165.106,81.703,165.106z"/>
|
</svg>
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 942 B After Width: | Height: | Size: 594 B |
17
static/svg/fotokoutek.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#444B64;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M26.5,41.4c0-0.6,0-1.3,0-2c0.1-2.1,1.2-3.3,3.3-3.4c4.3-0.1,8.5-0.1,12.8,0c2.5,0.1,3,1.2,3.4,5.6
|
||||||
|
c3.1,0,6.3,0.1,9.5-0.1c0.5,0,1.1-0.7,1.4-1.3c1.7-2.7,3.4-5.4,4.9-8.2c1-1.8,2.4-2.6,4.4-2.6c5.9,0.1,11.9,0.1,17.8,0
|
||||||
|
c2.1,0,3.4,0.8,4.4,2.6c1.5,2.7,3.2,5.3,4.7,8.1c0.6,1.2,1.4,1.5,2.7,1.5c9.3-0.1,18.6,0,27.9,0c6.5,0,9.9,3.4,9.9,9.8
|
||||||
|
c0,19.7,0,39.5,0,59.2c0,6.5-3.3,9.8-9.9,9.8c-32.5,0-64.9,0-97.4,0c-6.6,0-9.9-3.3-9.9-10.1c0-19.1,0-38.2,0-57.4
|
||||||
|
C16.5,45,18.4,42.7,26.5,41.4z M75,105.3c13.4,0,24.3-10.8,24.2-24.2c0-13.4-10.9-24.3-24.3-24.3c-13.3,0-24.2,10.9-24.2,24.3
|
||||||
|
C50.7,94.5,61.6,105.3,75,105.3z M114.4,52.5c-1.7,0-3.5,0-5.2,0c-2,0.1-3.4,1.4-3.5,3.2c-0.1,1.8,1.2,3.4,3.2,3.5
|
||||||
|
c3.6,0.1,7.3,0.1,10.9,0c2.1-0.1,3.3-1.5,3.2-3.4c0-1.8-1.3-3.2-3.4-3.3C117.9,52.5,116.2,52.5,114.4,52.5z"/>
|
||||||
|
<path class="st0" d="M74.9,98c-9.4,0-16.9-7.6-16.9-17c0.1-9.3,7.6-16.8,16.9-16.9c9.4,0,17.1,7.7,17,17.2
|
||||||
|
C91.9,90.6,84.3,98,74.9,98z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
@ -1 +1,15 @@
|
|||||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke=""><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18ZM12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z" fill="#79214c"></path> <path d="M18 5C17.4477 5 17 5.44772 17 6C17 6.55228 17.4477 7 18 7C18.5523 7 19 6.55228 19 6C19 5.44772 18.5523 5 18 5Z" fill="#79214c"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M1.65396 4.27606C1 5.55953 1 7.23969 1 10.6V13.4C1 16.7603 1 18.4405 1.65396 19.7239C2.2292 20.8529 3.14708 21.7708 4.27606 22.346C5.55953 23 7.23969 23 10.6 23H13.4C16.7603 23 18.4405 23 19.7239 22.346C20.8529 21.7708 21.7708 20.8529 22.346 19.7239C23 18.4405 23 16.7603 23 13.4V10.6C23 7.23969 23 5.55953 22.346 4.27606C21.7708 3.14708 20.8529 2.2292 19.7239 1.65396C18.4405 1 16.7603 1 13.4 1H10.6C7.23969 1 5.55953 1 4.27606 1.65396C3.14708 2.2292 2.2292 3.14708 1.65396 4.27606ZM13.4 3H10.6C8.88684 3 7.72225 3.00156 6.82208 3.0751C5.94524 3.14674 5.49684 3.27659 5.18404 3.43597C4.43139 3.81947 3.81947 4.43139 3.43597 5.18404C3.27659 5.49684 3.14674 5.94524 3.0751 6.82208C3.00156 7.72225 3 8.88684 3 10.6V13.4C3 15.1132 3.00156 16.2777 3.0751 17.1779C3.14674 18.0548 3.27659 18.5032 3.43597 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.49684 20.7234 5.94524 20.8533 6.82208 20.9249C7.72225 20.9984 8.88684 21 10.6 21H13.4C15.1132 21 16.2777 20.9984 17.1779 20.9249C18.0548 20.8533 18.5032 20.7234 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.7234 18.5032 20.8533 18.0548 20.9249 17.1779C20.9984 16.2777 21 15.1132 21 13.4V10.6C21 8.88684 20.9984 7.72225 20.9249 6.82208C20.8533 5.94524 20.7234 5.49684 20.564 5.18404C20.1805 4.43139 19.5686 3.81947 18.816 3.43597C18.5032 3.27659 18.0548 3.14674 17.1779 3.0751C16.2777 3.00156 15.1132 3 13.4 3Z" fill="#79214c"></path> </g></svg>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#792A4C;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M109.4,33.2c-4.2,0-7.6,3.4-7.6,7.6c0,4.2,3.4,7.6,7.6,7.6c4.2,0,7.6-3.4,7.6-7.6
|
||||||
|
C117,36.6,113.6,33.2,109.4,33.2z"/>
|
||||||
|
<path class="st0" d="M75.5,43c-17.7,0-32,14.4-32,32c0,17.7,14.4,32,32,32c17.7,0,32-14.4,32-32C107.5,57.3,93.2,43,75.5,43z
|
||||||
|
M75.5,95.5C64.2,95.5,55,86.3,55,75c0-11.3,9.2-20.5,20.5-20.5C86.8,54.5,96,63.7,96,75C96,86.3,86.8,95.5,75.5,95.5z"/>
|
||||||
|
<path class="st0" d="M100.9,140H49c-21.5,0-39-17.5-39-39V49c0-21.5,17.5-39,39-39h51.9c21.5,0,39,17.5,39,39V101
|
||||||
|
C140,122.5,122.5,140,100.9,140z M49,22.2c-14.8,0-26.8,12-26.8,26.8V101c0,14.8,12,26.8,26.8,26.8h51.9c14.8,0,26.8-12,26.8-26.8
|
||||||
|
V49c0-14.8-12-26.8-26.8-26.8H49z"/>
|
||||||
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.1 KiB |
17
static/svg/muzika.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#444B64;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M126.6,93.2c0-8.6,0-17.8,0-27.2c-13.9,3.9-27.6,7.8-41.5,11.7c0,3.9,0,7.7,0,11.5c0,10.1,0,20.3,0,30.4
|
||||||
|
c0,7.2-5.4,13.1-12.4,13.8c-6.9,0.7-13.2-4-14.7-10.9c-1.1-5.1,0.5-9.5,4.4-13c3.9-3.4,8.4-4.4,13.4-2.7c0.8,0.3,1.5,0.6,2.5,0.9
|
||||||
|
c0-1,0-1.8,0-2.7c0-14.2,0-28.3,0-42.5c0-3,0.6-3.8,3.6-4.7c15.4-4.4,30.9-8.8,46.3-13.1c3.7-1,5.4,0.3,5.4,4c0,19,0,38.1,0,57.1
|
||||||
|
c0,7.4-5.6,13.4-12.8,13.9c-7.2,0.5-13.6-4.8-14.6-12c-0.9-7.1,3.9-13.9,11.2-15.1C120.3,92.1,123.4,93,126.6,93.2z"/>
|
||||||
|
<path class="st0" d="M43.9,32.1c0,0.5,0,1.3,0,2.1c0,17.1,0,34.1,0,51.2c0,5.4-2.6,9.5-7.3,12c-4.6,2.4-9.3,2.2-13.7-0.6
|
||||||
|
c-6-3.7-8.1-11.4-5-17.6c3.2-6.4,10.6-9.2,17.3-6.7c0.6,0.2,1.1,0.4,1.9,0.8c0-1,0-1.9,0-2.7c0-16.5,0-32.9,0-49.4
|
||||||
|
c0-0.7-0.2-1.5,0.1-2c0.6-1,1.4-2.4,2.4-2.7c1-0.3,2.4,0.4,3.5,0.9c0.6,0.3,1,1.2,1.3,1.8c5.1,8.5,11.9,15.3,19.8,21.2
|
||||||
|
c8.5,6.4,9.7,17.9,2.7,25.5c-3.2,3.5-7.2,5.3-11.9,5.6c-2.4,0.1-4.1-1.2-4.2-3.2c-0.1-2,1.3-3.4,3.8-3.6c4.6-0.4,8.1-3.1,9.4-7.1
|
||||||
|
c1.3-4.2,0-8.3-3.5-11.3C54.9,41.7,49.4,36.9,43.9,32.1z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
30
static/svg/party_ples.svg
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 50" style="enable-background:new 0 0 150 50;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#792A4C;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M2.5,45.4v-25h4.8l0,2c1-1.7,2.7-2.4,4.4-2.4c4.3,0,7.3,3.4,7.3,9.1c0,5-2.5,8.7-6.9,8.7c-2,0-3.7-0.7-4.8-2.5
|
||||||
|
v10.1H2.5z M14,28.8c0-3.1-1.3-4.8-3.4-4.8c-2,0-3.4,1.7-3.4,4.6c0,3.4,1.2,4.9,3.4,4.9C12.8,33.5,14,32.1,14,28.8z"/>
|
||||||
|
<path class="st0" d="M31.2,37.3c-0.2-0.4-0.3-0.9-0.3-1.4c-0.9,1.1-2.5,1.9-5.1,1.9c-3.9,0-5.6-1.9-5.6-4.9c0-4.4,3.3-5.2,7.9-5.9
|
||||||
|
c1.9-0.3,2.5-0.7,2.5-1.7c0-1-1.1-1.5-2.5-1.5c-1.9,0-2.6,0.9-2.8,2.1h-4.5c0.1-3.5,2-6,7.5-6c5.4,0,7.3,2.4,7.3,6.7v10.7H31.2z
|
||||||
|
M30.6,29.4c-0.4,0.3-1,0.6-2.5,0.9c-2.4,0.5-3.1,1.2-3.1,2.4c0,1.1,0.7,1.6,1.8,1.6c2.4,0,3.7-1.7,3.7-3.4L30.6,29.4z"/>
|
||||||
|
<path class="st0" d="M37.5,37.3v-17h4.7v1.6c1.5-1.9,3-2,4.8-2h0.5V25c-0.4-0.1-0.8-0.1-1.2-0.1c-2.5,0-3.7,1-3.7,3.5v8.9H37.5z"/>
|
||||||
|
<path class="st0" d="M62.5,31c0,3.6-1.9,6.8-7,6.8c-5.1,0-7-3.1-7-6.8V15.8h4.9v4.6h9.1v3.5h-9.1v6.9c0,1.8,0.7,2.7,2.2,2.7
|
||||||
|
c1.5,0,2.2-0.9,2.2-2.7v-4.6h4.7V31z"/>
|
||||||
|
<path class="st0" d="M74.6,35.4c-0.7,1.4-2.5,2.1-4.3,2.1c-3.9,0-6.2-2.5-6.2-6V20.4h5v10.4c0,1.8,0.8,2.7,2.4,2.7
|
||||||
|
c1.7,0,3-1.2,3-2.7V20.4h5v17.4c0,4.8-3.1,7.5-7.9,7.5c-5.2,0-7.5-2.7-7.5-7.1h4.7c0,1.7,1,2.8,3,2.8c1.6,0,2.8-1,2.8-3.2V35.4z"/>
|
||||||
|
<path class="st0" d="M90,45.4v-25h4.8l0,2c1-1.7,2.7-2.4,4.4-2.4c4.3,0,7.3,3.4,7.3,9.1c0,5-2.5,8.7-6.9,8.7c-2,0-3.7-0.7-4.8-2.5
|
||||||
|
v10.1H90z M101.5,28.8c0-3.1-1.3-4.8-3.4-4.8c-2,0-3.4,1.7-3.4,4.6c0,3.4,1.2,4.9,3.4,4.9C100.3,33.5,101.5,32.1,101.5,28.8z"/>
|
||||||
|
<path class="st0" d="M108.1,37.3V14.2h5v23.2H108.1z"/>
|
||||||
|
<path class="st0" d="M119.5,30.1c0.1,2.1,1.4,3.7,3.3,3.7c1.2,0,2.4-0.6,2.6-1.5h5.1c-1,3.5-3.9,5.4-7.5,5.4c-5.7,0-8.6-3.1-8.6-9.2
|
||||||
|
c0-5.2,3-8.6,8.3-8.6c5.2,0,8,3.2,8,9.5v0.7H119.5z M125.8,27.1c-0.1-2.2-1.4-3.2-3.1-3.2c-1.7,0-2.9,1.1-3.1,3.2H125.8z"/>
|
||||||
|
<path class="st0" d="M142.3,25.5c-0.1-1.4-0.8-2.2-2.8-2.2c-1.7,0-2.4,0.6-2.4,1.4c0,0.9,1,1.3,2.4,1.7c1.6,0.4,3.6,0.8,5.3,1.6
|
||||||
|
c1.6,0.8,2.7,1.9,2.7,4.2c0,3.3-2.2,5.5-7.4,5.5c-5.3,0-8.2-2.3-8.3-5.9h5.1c0,1.3,1.1,2.3,3.2,2.3c1.4,0,2.5-0.4,2.5-1.6
|
||||||
|
c0-0.9-0.7-1.2-2.2-1.6c-2.9-0.7-3.9-1-5-1.6c-2.3-1.1-3-2.8-3-4.5c0-2.8,1.9-5,7.3-5c5,0,7.1,1.9,7.3,5.6H142.3z"/>
|
||||||
|
<path class="st0" d="M2.9,16.1V4.6H8c2.3,0,3.8,1.4,3.8,3.7c0,2.2-1.4,3.6-3.8,3.6H5.6v4.1H2.9z M7.7,9.8c1.1,0,1.7-0.6,1.7-1.5
|
||||||
|
c0-0.8-0.6-1.4-1.7-1.4H5.6v2.9H7.7z"/>
|
||||||
|
<path class="st0" d="M19,16.1l-3.2-5l-1,1v4h-2.6V4.6h2.6v4.2l3.9-4.2h3.4l-4.5,4.5l4.6,7H19z"/>
|
||||||
|
<path class="st0" d="M31.4,16.1V8.7l-1.8,7.4H27l-1.8-7.4v7.4h-2.5V4.6h3.9l1.7,8l1.7-8h3.8v11.4H31.4z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
@ -1,5 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M16.2188 4.83755L19.1835 7.80516C21.1954 9.81905 22.2014 10.826 21.9667 11.9115C21.7319 12.9969 20.4 13.4973 17.7362 14.4981L15.8922 15.191C15.1788 15.459 14.8221 15.593 14.5468 15.8314C14.4262 15.9358 14.3184 16.054 14.2254 16.1835C14.013 16.4795 13.9119 16.8472 13.7095 17.5825C13.2493 19.2551 13.0192 20.0914 12.4713 20.4041C12.2404 20.5358 11.9792 20.6049 11.7134 20.6045C11.0827 20.6036 10.4699 19.9902 9.24441 18.7635L7.77841 17.2961L6.69935 16.2163L5.28476 14.8C4.06698 13.581 3.45809 12.9715 3.45413 12.3446C3.45242 12.0735 3.5228 11.8069 3.65804 11.5721C3.97088 11.0289 4.80107 10.8 6.46145 10.3423C7.19811 10.1392 7.56644 10.0377 7.86251 9.82451C7.99536 9.72887 8.11619 9.61754 8.22239 9.49292C8.45908 9.2152 8.59063 8.85617 8.85373 8.1381L9.5217 6.31506C10.5086 3.62155 11.0021 2.2748 12.0904 2.03468C13.1788 1.79457 14.1921 2.8089 16.2188 4.83755Z" fill="#1C274C"/>
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
<path d="M3.30236 21.7764L7.77841 17.2961L6.69935 16.2163L2.22345 20.6965C1.92552 20.9947 1.92552 21.4782 2.22345 21.7764C2.52138 22.0747 3.00443 22.0747 3.30236 21.7764Z" fill="#1C274C"/>
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
</svg>
|
<style type="text/css">
|
||||||
|
.st0{fill:#792A4C;}
|
||||||
|
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#CF6379;}
|
||||||
|
</style>
|
||||||
|
<polygon class="st0" points="64.4,100.9 49.4,85.9 2.7,145.2 5,147.5 "/>
|
||||||
|
<path class="st1" d="M145.8,45.6L104.1,4c-3.5-3.5-9.2,0.1-10.8,3.2c-0.3,0.5,0.2,1-0.2,4.6c-0.6,4.5-1.6,9.4-3.2,13.4L71.3,43.7
|
||||||
|
c-7.4,7.4-18,4.1-27-0.4c-1.9-0.9-4.3-3-6.5-0.9L30,50.2c-1.1,1.1-1.1,3,0,4.2l65.8,65.8c1.1,1.1,3,1.1,4.2,0l7.8-7.8
|
||||||
|
c2.1-2.1-0.6-4.8-1.7-7.1c-4-8.3-7.6-19.4-0.9-26.1l19.3-19.3c3.8-1.2,8.7-2.3,13.4-3c3.6-0.6,4.1-0.1,4.6-0.5
|
||||||
|
C145.8,54.4,149.3,49.2,145.8,45.6L145.8,45.6z"/>
|
||||||
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 952 B |
14
static/svg/prekvapeni.svg
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#444B64;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M63.6,86c0-3.5,0-6.9,0-10.4c0.1-7.5,4.5-12,11.9-12.3C83.9,63,90.3,56.2,90.3,48c-0.1-8.2-6.9-15-15.1-15.1
|
||||||
|
c-8.3-0.1-15,6.4-15.4,14.8c-0.3,7.2-5.2,12.1-11.8,11.9c-6.7-0.2-11.2-5.4-11-12.6c0.4-19.2,16.2-35.6,35.5-36.8
|
||||||
|
c19.8-1.2,37.6,13.1,40.2,32.5c2.4,18.1-7.1,34.5-24.1,41c-1.8,0.7-2.2,1.6-2.2,3.3c0.1,4,0.2,8-0.2,11.9c-0.5,5.7-5.5,9.9-11.3,9.9
|
||||||
|
c-5.8,0-10.6-4.3-11.2-10c-0.2-2.5-0.1-5.1-0.2-7.6C63.6,89.4,63.6,87.7,63.6,86z"/>
|
||||||
|
<path class="st0" d="M75,140c-6.3,0-11.4-5.2-11.3-11.6c0.1-6.4,5.2-11.4,11.6-11.3c6.2,0.1,11.2,5.2,11.2,11.4
|
||||||
|
C86.4,134.9,81.3,140,75,140z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1013 B |
24
static/svg/tombola.svg
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#444B64;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M70.1,110c0,8.3,0,16.6,0,25c0,2.3-0.3,2.5-2.6,2.5c-13,0-26,0-39.1,0c-4.7,0-6.9-2.3-6.9-6.9
|
||||||
|
c0-13.9,0-27.8,0-41.7c0-4.7,2.3-7,6.9-7c12.8,0,25.7,0,38.5,0c2.7,0,3.2,0.4,3.2,3.1C70.1,93.4,70.1,101.7,70.1,110z"/>
|
||||||
|
<path class="st0" d="M79.9,110c0-8.3,0-16.6,0-25c0-2.7,0.4-3.2,3.2-3.2c12.9,0,25.8,0,38.6,0c4.5,0,6.8,2.3,6.8,6.8c0,14,0,28,0,42
|
||||||
|
c0,4.5-2.3,6.8-6.8,6.8c-13.1,0-26.2,0-39.3,0c-2.2,0-2.4-0.3-2.4-2.5C79.9,126.7,79.9,118.4,79.9,110z"/>
|
||||||
|
<path class="st0" d="M105.8,45.4c7.5,0,15.1,0,22.6,0c4.4,0,6.7,2.3,6.7,6.7c0,5.5,0,11.1,0,16.6c0,4.3-2.3,6.6-6.6,6.6
|
||||||
|
c-15.2,0-30.3,0-45.5,0c-2.7,0-3-0.3-3-3c0-8,0-16.1,0-24.1c0-2.5,0.4-2.9,2.8-2.9C90.4,45.4,98.1,45.4,105.8,45.4z"/>
|
||||||
|
<path class="st0" d="M44.3,75.4c-7.5,0-15.1,0-22.6,0c-4.4,0-6.7-2.3-6.7-6.7c0-5.5,0-11.1,0-16.6c0-4.4,2.3-6.7,6.6-6.7
|
||||||
|
c15.3,0,30.5,0,45.8,0c2.2,0,2.7,0.5,2.7,2.7c0,8.3,0,16.6,0,24.8c0,2-0.4,2.4-2.5,2.4C59.8,75.4,52,75.4,44.3,75.4z"/>
|
||||||
|
<path class="st0" d="M50.3,41.2c-4-0.2-7.9-0.6-11.7-1.9c-8.2-3-11.5-10.5-8.1-18.6c2.5-6.1,7.9-8.9,15.1-8c7,0.9,13.2,3.9,18.9,7.8
|
||||||
|
c2.5,1.8,4.9,3.8,6.9,6.2c3,3.5,2.1,7.6-1.8,10.1c-3.2,2.1-6.8,2.9-10.5,3.5C56.1,40.8,53.2,40.9,50.3,41.2z M61.5,30.3
|
||||||
|
c0-0.2,0-0.3,0-0.5c-4.2-3.2-8.6-6-13.8-7.2c-1.8-0.4-3.8-0.5-5.6-0.6c-1.5-0.1-2.4,0.8-2.8,2.2c-1.2,3.6-0.4,5.2,3.2,6.4
|
||||||
|
c0.4,0.1,0.7,0.2,1.1,0.3c3.9,0.9,7.9,0.9,11.9,0.4C57.4,31.1,59.4,30.6,61.5,30.3z"/>
|
||||||
|
<path class="st0" d="M99.8,41c-5,0-9.9-0.5-14.5-2.2c-2.1-0.7-4.1-1.8-5.8-3.1c-2.8-2.2-3-5.7-1-8.6c1.9-2.7,4.4-4.7,7.1-6.6
|
||||||
|
c4.8-3.3,10-6,15.7-7.3c2.9-0.7,5.9-1,8.9-0.4c6.1,1.2,10,5.7,10.7,12.3c0.7,6.5-2.4,11.5-8.6,13.9C108.2,40.6,104,41,99.8,41z
|
||||||
|
M88.7,29.8c0,0.2,0,0.3,0,0.5c2.1,0.3,4.2,0.8,6.3,1c4.3,0.5,8.5,0.6,12.7-0.7c3.6-1.1,4.4-2.8,3.3-6.4c0,0,0-0.1,0-0.1
|
||||||
|
c-0.4-1.2-1.3-1.9-2.5-2.1c-0.7-0.1-1.5-0.1-2.2-0.1C99.4,22.5,94,25.9,88.7,29.8z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
24
static/svg/uvod.svg
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#444B64;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M16.5,75c0-16.5,0-32.9,0-49.4c0-6,3.1-9.2,9.2-9.2c32.9,0,65.8,0,98.8,0c6,0,9.2,3.1,9.2,9.2
|
||||||
|
c0,32.9,0,65.9,0,98.8c0,6-3.1,9.2-9.2,9.2c-32.9,0-65.8,0-98.8,0c-6,0-9.2-3.1-9.2-9.2C16.5,107.9,16.5,91.5,16.5,75z M108.2,71.4
|
||||||
|
c0-16.1,0-32,0-48c-22.2,0-44.3,0-66.4,0c0,16.1,0,32,0,48C64,71.4,86.1,71.4,108.2,71.4z M108.3,78.6c-22.3,0-44.4,0-66.5,0
|
||||||
|
c0,16.1,0,32,0,47.9c22.3,0,44.4,0,66.5,0C108.3,110.5,108.3,94.7,108.3,78.6z M34.6,53.1c0-3.8,0-7.5,0-11.3c-3.8,0-7.5,0-11.1,0
|
||||||
|
c0,3.9,0,7.5,0,11.3C27.3,53.1,30.8,53.1,34.6,53.1z M115.4,41.7c0,3.9,0,7.5,0,11.3c3.8,0,7.5,0,11.1,0c0-3.8,0-7.5,0-11.3
|
||||||
|
C122.8,41.7,119.2,41.7,115.4,41.7z M23.5,60.1c0,3.8,0,7.5,0,11.2c3.8,0,7.4,0,11.1,0c0-3.8,0-7.5,0-11.2
|
||||||
|
C30.8,60.1,27.2,60.1,23.5,60.1z M126.6,60.2c-3.9,0-7.5,0-11.2,0c0,3.8,0,7.5,0,11.2c3.8,0,7.5,0,11.2,0
|
||||||
|
C126.6,67.6,126.6,64,126.6,60.2z M34.6,89.9c0-3.9,0-7.5,0-11.3c-3.8,0-7.4,0-11.2,0c0,3.8,0,7.5,0,11.3
|
||||||
|
C27.3,89.9,30.9,89.9,34.6,89.9z M126.6,78.6c-3.8,0-7.5,0-11.1,0c0,3.9,0,7.5,0,11.2c3.8,0,7.4,0,11.1,0
|
||||||
|
C126.6,86.1,126.6,82.5,126.6,78.6z M34.6,108.3c0-3.9,0-7.5,0-11.3c-3.8,0-7.5,0-11.1,0c0,3.8,0,7.5,0,11.3
|
||||||
|
C27.2,108.3,30.8,108.3,34.6,108.3z M126.6,97c-3.8,0-7.5,0-11.1,0c0,3.8,0,7.5,0,11.2c3.8,0,7.4,0,11.1,0
|
||||||
|
C126.6,104.5,126.6,100.9,126.6,97z M23.3,34.6c3.9,0,7.6,0,11.3,0c0-3.8,0-7.5,0-11.3c-3.3,0-6.4,0-9.5,0c-1.2,0-1.8,0.5-1.8,1.8
|
||||||
|
C23.4,28.2,23.3,31.3,23.3,34.6z M115.4,23.3c0,4,0,7.7,0,11.3c3.8,0,7.4,0,11.2,0c0-3.3,0.1-6.5-0.1-9.7c0-0.6-1-1.6-1.6-1.6
|
||||||
|
C121.9,23.2,118.7,23.3,115.4,23.3z M23.3,115.3c0,3.4-0.1,6.6,0.1,9.7c0,0.6,0.9,1.5,1.4,1.5c3.2,0.1,6.5,0.1,9.8,0.1
|
||||||
|
c0-3.9,0-7.6,0-11.4C30.9,115.3,27.3,115.3,23.3,115.3z M115.3,126.7c3.4,0,6.5,0.1,9.6-0.1c0.6,0,1.6-0.8,1.7-1.3
|
||||||
|
c0.1-3.3,0.1-6.6,0.1-9.9c-3.9,0-7.6,0-11.3,0C115.3,119.2,115.3,122.8,115.3,126.7z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
@ -1 +1,11 @@
|
|||||||
<svg viewBox="0 -3 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <title>youtube [#168]</title> <desc>Created with Sketch.</desc> <defs> </defs> <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="Dribbble-Light-Preview" transform="translate(-300.000000, -7442.000000)" fill="#79214c"> <g id="icons" transform="translate(56.000000, 160.000000)"> <path d="M251.988432,7291.58588 L251.988432,7285.97425 C253.980638,7286.91168 255.523602,7287.8172 257.348463,7288.79353 C255.843351,7289.62824 253.980638,7290.56468 251.988432,7291.58588 M263.090998,7283.18289 C262.747343,7282.73013 262.161634,7282.37809 261.538073,7282.26141 C259.705243,7281.91336 248.270974,7281.91237 246.439141,7282.26141 C245.939097,7282.35515 245.493839,7282.58153 245.111335,7282.93357 C243.49964,7284.42947 244.004664,7292.45151 244.393145,7293.75096 C244.556505,7294.31342 244.767679,7294.71931 245.033639,7294.98558 C245.376298,7295.33761 245.845463,7295.57995 246.384355,7295.68865 C247.893451,7296.0008 255.668037,7296.17532 261.506198,7295.73552 C262.044094,7295.64178 262.520231,7295.39147 262.895762,7295.02447 C264.385932,7293.53455 264.28433,7285.06174 263.090998,7283.18289" id="youtube-[#168]"> </path> </g> </g> </g> </g></svg>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#792A4C;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M148.2,55.9c0-17.8-14.4-32.1-32.1-32.1H33.9c-17.8,0-32.1,14.4-32.1,32.1v38.2c0,17.8,14.4,32.1,32.1,32.1
|
||||||
|
h82.2c17.8,0,32.1-14.4,32.1-32.1V55.9z M99.9,77.9L63,96.1c-1.4,0.8-6.4-0.3-6.4-1.9V56.8c0-1.7,5-2.7,6.4-1.9l35.3,19.2
|
||||||
|
C99.8,74.9,101.4,77.1,99.9,77.9z"/>
|
||||||
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 702 B |
@ -2,52 +2,62 @@
|
|||||||
<html lang="cs">
|
<html lang="cs">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="/vars.css">
|
<link rel="stylesheet" href="/vars.css">
|
||||||
<link rel="stylesheet" href="/global.css">
|
<link rel="stylesheet" href="/global.css">
|
||||||
<link rel="stylesheet" href="/header.css">
|
<link rel="stylesheet" href="/header.css">
|
||||||
<link rel="stylesheet" href="/main.css">
|
<link rel="stylesheet" href="/main.css">
|
||||||
<link rel="stylesheet" href="/news.css">
|
<link rel="stylesheet" href="/news.css">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="stylesheet" href="https://use.typekit.net/yqq2dbq.css">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@400;700&display=swap" rel="stylesheet">
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
<div class="nav-left">
|
<div class="nav-left">
|
||||||
<a href="/"><img src="/img/pkmples_logo.png" alt="pkmples logo"></a>
|
<a href="/"><img src="/svg/party_ples.svg" alt="pkmples logo"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="nav-btn">
|
<div class="nav-btn">
|
||||||
<img src="/svg/menu.svg" alt="menu icon">
|
<img src="/svg/menu.svg" alt="menu icon">
|
||||||
</div>
|
</div>
|
||||||
<div class="nav-right mobile-visible">
|
<div class="nav-right mobile-visible">
|
||||||
<a href="https://www.facebook.com/events/823114292589147" target="_blank"><img src="/svg/facebook.svg" alt="facebook logo"></a>
|
<a href="https://www.facebook.com/events/823114292589147/?active_tab=discussion" target="_blank"><img src="/svg/facebook.svg" alt="facebook logo"></a>
|
||||||
<a href="https://www.instagram.com/pkm.hub" target="_blank"><img src="/svg/instagram.svg" alt="instagram logo"></a>
|
<a href="https://www.instagram.com/pkm.hub" target="_blank"><img src="/svg/instagram.svg" alt="instagram logo"></a>
|
||||||
<a href="https://www.youtube.com/@pkmhub" target="_blank"><img src="/svg/youtube.svg" alt="youtube logo"></a>
|
<a href="https://www.youtube.com/@pkmhub" target="_blank"><img src="/svg/youtube.svg" alt="youtube logo"></a>
|
||||||
<a href="/galerie">galerie</a>
|
<a href="/galerie">galerie</a>
|
||||||
<a href="/archiv">archiv</a>
|
</div>
|
||||||
</div>
|
</nav>
|
||||||
</nav>
|
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
{% block main %} {% endblock main %}
|
{% block main %} {% endblock main %}
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const navBtn = document.querySelector(".nav-btn img")
|
const navBtn = document.querySelector(".nav-btn img")
|
||||||
let navVisible = false
|
let navVisible = false
|
||||||
navBtn.addEventListener("click", () => {
|
navBtn.addEventListener("click", () => {
|
||||||
if(navVisible) {
|
if(navVisible) {
|
||||||
document.querySelector(".nav-right").classList.add("mobile-visible")
|
document.querySelector(".nav-right").classList.add("mobile-visible")
|
||||||
} else {
|
} else {
|
||||||
document.querySelector(".nav-right").classList.remove("mobile-visible")
|
document.querySelector(".nav-right").classList.remove("mobile-visible")
|
||||||
}
|
}
|
||||||
|
|
||||||
navVisible = !navVisible
|
navVisible = !navVisible
|
||||||
})
|
})
|
||||||
</script>
|
|
||||||
|
window.addEventListener("resize", () => {
|
||||||
|
const width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
|
||||||
|
console.log(width)
|
||||||
|
|
||||||
|
if(width <= "992") {
|
||||||
|
document.querySelector("main").appendChild(document.querySelector("footer"))
|
||||||
|
} else {
|
||||||
|
document.querySelector("aside".appendChild(document.querySelector("footer")))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,75 +1,75 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<section id="news" class="news-wrapper">
|
<section id="news" class="news-wrapper">
|
||||||
{% block news %} {% endblock news %}
|
{% block news %} {% endblock news %}
|
||||||
</section>
|
</section>
|
||||||
<section class="aside-wrapper">
|
<section class="aside-wrapper">
|
||||||
<aside>
|
<aside>
|
||||||
<section id="vstupenky-wrapper">
|
<section id="vstupenky-wrapper">
|
||||||
<a href="#" class="vstupenky">VSTUPENKY >></a>
|
<a href="#" class="vstupenky">VSTUPENKY >></a>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="infotable">
|
<section class="infotable">
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
<img src="/img/uvod.png" alt="ikonka" />
|
<img src="/svg/uvod.svg" alt="ikonka" />
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<h3>Slavnostní úvod</h3>
|
<h3>Slavnostní úvod</h3>
|
||||||
<p>
|
<p>
|
||||||
Na rozehřátí ti něco pěknýho řeknem a možná se dočkáš i nějakýho toho videjka.
|
Na rozehřátí ti něco pěknýho řeknem a možná se dočkáš i nějakýho toho videjka.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
<img src="/img/muzika.png" alt="ikonka" />
|
<img src="/svg/muzika.svg" alt="ikonka" />
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<h3>Kvalitní muzika</h3>
|
<h3>Kvalitní muzika</h3>
|
||||||
<p>
|
<p>
|
||||||
“Proč nehrají, preceptore?” na našem plese rozhodně neuslyšíš. Zahraje nám BigBand ZUŠ
|
“Proč nehrají, preceptore?” na našem plese rozhodně neuslyšíš. Zahraje nám <b>BigBand ZUŠ
|
||||||
Turnov, kterej do toho umí hrábnout.
|
Turnov</b>, kterej do toho umí hrábnout.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
<img src="/img/tombola.png" alt="ikonka" />
|
<img src="/svg/tombola.svg" alt="ikonka" />
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<h3>Tombola</h3>
|
<h3>Tombola</h3>
|
||||||
<p>
|
<p>
|
||||||
Už teď ty ceny nemáme kam dávat. Tak nám přijď pomoct a nějakou si odnes domů!
|
Už teď ty ceny nemáme kam dávat. Tak nám přijď pomoct a nějakou si odnes domů!
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
<img src="/img/fotokoutek.png" alt="ikonka" />
|
<img src="/svg/fotokoutek.svg" alt="ikonka" />
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<h3>Fotokoutek</h3>
|
<h3>Fotokoutek</h3>
|
||||||
<p>
|
<p>
|
||||||
Vyblejsknem tě samotnýho nebo s celou partou. A to v našem koutku i na tanečním place!
|
Vyblejsknem tě samotnýho nebo s celou partou. A to v našem koutku i na tanečním place!
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
<img src="/img/beerpong.png" alt="ikonka" />
|
<img src="/svg/dancing.svg" alt="ikonka" />
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<h3>Beer pong</h3>
|
<h3>Beer pong</h3>
|
||||||
<p>
|
<p>
|
||||||
Zahraj si o super ceny v týhle obdobě americkýho fenoménu.
|
Zahraj si o super ceny v týhle obdobě americkýho fenoménu.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
<img src="/img/prekvapeni.png" alt="ikonka" />
|
<img src="/svg/prekvapeni.svg" alt="ikonka" />
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<h3>Půlnoční překvapení</h3>
|
<h3>Půlnoční překvapení</h3>
|
||||||
<p>
|
<p>
|
||||||
No, máš se prostě na co těšit. Bude to velký! Co? To už by přece nebylo překvápko.
|
No, máš se prostě na co těšit. Bude to velký! Co? To už by přece nebylo překvápko.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</aside>
|
</aside>
|
||||||
<footer>
|
<footer>
|
||||||
<p>Nadační fond maléDivy • Kulturní centrum Turnov • Big Band ZUŠ Turnov</p>
|
<p>Nadační fond maléDivy • <a href="https://www.kulturaturnov.cz" target="_blank">Kulturní centrum Turnov</a> • <a href="https://www.facebook.com/bigbandturnov" target="_blank">Big Band ZUŠ Turnov</a></p>
|
||||||
<p>© <a href="https://fofrweb.com/">Fofrweb</a> + PKM</p>
|
<p>© <a href="https://fofrweb.com/" target="_blank">Fofrweb</a> + PKM</p>
|
||||||
</footer>
|
</footer>
|
||||||
</section>
|
</section>
|
||||||
{% endblock main %}
|
{% endblock main %}
|
||||||
|
@ -10,9 +10,8 @@
|
|||||||
<article class="news-card {{ article_class }}">
|
<article class="news-card {{ article_class }}">
|
||||||
<img src="/svg/pin.svg" alt="pin icon" class="pin-img">
|
<img src="/svg/pin.svg" alt="pin icon" class="pin-img">
|
||||||
<h3>{{ page.title }}</h3>
|
<h3>{{ page.title }}</h3>
|
||||||
<p>{{ page.date | date(format="%d. %m. %Y")}}</p>
|
<p class="date">{{ page.date | date(format="%d. %m. %Y")}}</p>
|
||||||
<p>Autor: {{ page.extra["author"] }}</p>
|
<p class="text">{{ page.content | safe }}</p>
|
||||||
{{ page.content | safe }}
|
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endblock news %}
|
{% endblock news %}
|
||||||
|