variables

master
Benjamin Völkl 2023-07-25 11:34:22 +02:00
parent deb2b60a0a
commit 10f875d804
2 changed files with 99 additions and 13 deletions

View File

@ -10,6 +10,31 @@
<script src="{{asset('template/libs/jquery-3.6.0.min.js')}}"></script>
<script src="{{asset('template/libs/bootstrap-5.2.0/bootstrap.bundle.min.js')}}"></script>
@yield('head')
<style>

body{
background-color: {{$_primary_background_color}};
font-family: {{$_schriftart}};
}


h1,h2{color: {{$_title_color}}}
.card{
background-color: {{$_secondary_background_color}}
}



.bg-primary{ background-color: {{$_primary_ci_color}} !important;}

a, a:hover, a:active {color:{{$_primary_link_color}} };


}
</style>



</head>
<body>
@yield('content')

View File

@ -1,19 +1,80 @@
[
{
"name": "Type",
"value": "Place",
"type": "string",
"required": true
"icon": "/font-awesome/light/suitcase.svg",
"group_name": "Design",
"description": "word word word word",
"variables": [
{
"name": "Primary CI Color",
"type": "color",
"value" : "#1862A8"
},
{
"name": "Secondary CI Color",
"type": "color"
},

{
"name": "Primary Background Color",
"type": "color",
"value": "#ffffff"
},
{
"name": "Secondary Background Color",
"type": "color"
},

{
"name": "Primary Link Color",
"type": "color",
"value" : "#1862A8"

},
{
"name": "Secondary Link Color",
"type": "color",
"value" : "#1862A8"

},

{
"name": "Title Color",
"type": "color",
"value" : "#1862A8",
"description": "Farbe für Überschriften"

},
{
"name": "Schriftart",
"type": "string",
"value" : "Times New Roman"
}
]
},

{
"name": "Location Field",
"value": "Address",
"type": "string",
"required": true
},
{
"name": "Filter Fields",
"type": "array",
"required": true
"icon": "/font-awesome/light/map-pin.svg",
"group_name": "Maps Config",
"description": "Einstellungen für die Karte",
"variables": [
{
"name": "Type",
"value": "Place",
"type": "string",
"required": true
},
{
"name": "Location Field",
"value": "Address",
"type": "string",
"required": true
},
{
"name": "Filter Fields",
"type": "array",
"required": true
}
]
}

]