variables
parent
deb2b60a0a
commit
10f875d804
|
@ -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')
|
||||
|
|
|
@ -1,4 +1,62 @@
|
|||
[
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
"icon": "/font-awesome/light/map-pin.svg",
|
||||
"group_name": "Maps Config",
|
||||
"description": "Einstellungen für die Karte",
|
||||
"variables": [
|
||||
{
|
||||
"name": "Type",
|
||||
"value": "Place",
|
||||
|
@ -17,3 +75,6 @@
|
|||
"required": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
]
|
Loading…
Reference in New Issue