Change style of overview
parent
c796befec7
commit
7175aa58c8
@ -1,12 +1,34 @@
|
||||
mat-grid-tile {
|
||||
cursor: pointer;
|
||||
background: grey;
|
||||
}
|
||||
|
||||
.grid-list-spacer {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.big-list {
|
||||
margin-bottom: 30px;
|
||||
.page-wrapper {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
.link-box {
|
||||
flex-basis: 50%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
.text-wrapper {
|
||||
padding: 2em;
|
||||
}
|
||||
}
|
||||
.banner-box {
|
||||
flex-basis: 50%;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
.center-text {
|
||||
margin: 0.5em;
|
||||
position: absolute;
|
||||
word-break: break-word;
|
||||
color: white;
|
||||
z-index: 5;
|
||||
}
|
||||
.banner-img-box {
|
||||
height: 100%;
|
||||
filter: blur(2px);
|
||||
img {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,83 @@
|
||||
|
||||
export const tableLinks = [
|
||||
{
|
||||
displayName: 'Lastenräder',
|
||||
iconName: 'directions_bike',
|
||||
route: 'table/bikes'
|
||||
},
|
||||
{
|
||||
displayName: 'Aktive',
|
||||
iconName: 'directions_run',
|
||||
route: 'table/participants'
|
||||
},
|
||||
{
|
||||
displayName: 'Standorte',
|
||||
iconName: 'location_on',
|
||||
route: 'table/lendingStations'
|
||||
},
|
||||
{
|
||||
displayName: 'Personen',
|
||||
iconName: 'person',
|
||||
route: 'table/persons'
|
||||
},
|
||||
{
|
||||
displayName: 'Kontaktinformationen',
|
||||
iconName: 'contact_page',
|
||||
route: 'table/contactInformation'
|
||||
},
|
||||
{
|
||||
displayName: 'Zeitscheiben',
|
||||
iconName: 'access_time',
|
||||
route: 'table/timeFrames'
|
||||
},
|
||||
{
|
||||
displayName: 'Lastenfahrrad-Eventtypen',
|
||||
iconName: 'build',
|
||||
route: 'table/bikeEventTypes'
|
||||
},
|
||||
{
|
||||
displayName: 'Lastenfahrrad-Events',
|
||||
iconName: 'event',
|
||||
route: 'table/bikeEvents'
|
||||
},
|
||||
{
|
||||
displayName: 'Equipmenttypen',
|
||||
iconName: 'toys',
|
||||
route: 'table/equipmentTypes'
|
||||
},
|
||||
{
|
||||
displayName: 'Equipment',
|
||||
iconName: 'battery_full',
|
||||
route: 'table/equipments'
|
||||
},
|
||||
{
|
||||
displayName: 'Engagementypen',
|
||||
iconName: 'track_changes',
|
||||
route: 'table/engagementTypes'
|
||||
},
|
||||
{
|
||||
displayName: 'Engagements',
|
||||
iconName: 'update',
|
||||
route: 'table/engagements'
|
||||
},
|
||||
{
|
||||
displayName: 'Organisationen',
|
||||
iconName: 'business',
|
||||
route: 'table/organisations'
|
||||
},
|
||||
{
|
||||
displayName: 'Anbieter',
|
||||
iconName: 'people',
|
||||
route: 'table/providers'
|
||||
},
|
||||
{
|
||||
displayName: 'Workshops',
|
||||
iconName: 'school',
|
||||
route: 'table/workshops'
|
||||
},
|
||||
{
|
||||
displayName: 'Workshoptypen',
|
||||
iconName: 'multiline_chart',
|
||||
route: 'table/workshopTypes'
|
||||
},
|
||||
]
|
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
Loading…
Reference in New Issue