map frontend fixes

This commit is contained in:
s416422 2019-12-14 22:16:19 +01:00
parent fa12959122
commit 054f5dfd61
3 changed files with 46 additions and 5 deletions

View File

@ -11196,3 +11196,6 @@ a.text-dark:focus {
.btn-export {
background-color: #649a24;
}
.card-header {
background-color: #ececec;
}

View File

@ -1,6 +1,41 @@
body {
background-color: #f8fafc;
font-family: 'Nunito', sans-serif;
font-weight: 600;
}
.seat-stat-wrapper h1{
text-align: center;
font-size: 56px;
padding-bottom: 10px;
border-bottom: 2px outset rgba(133, 133, 133, 0.4);
text-transform: uppercase;
font-family: 'Nunito', sans-serif;
font-weight: 500;
text-shadow: 0 0 6px rgba(133, 133, 133, 0.4);
color: #636b6f;
}
.add-mn-btn, .end-button {
display: none;
}
#choosepanel h2, .room-view h2 {
font-size: 23px;
text-shadow: 0 0 6px rgba(133, 133, 133, 0.4);
}
#choosepanel select {
font-size: 18px;
width: 150px;
text-shadow: 0 0 6px rgba(133, 133, 133, 0.4);
display: block;
font-family: sans-serif;
}
.seat-chart-wrapper, div.seatCharts-space {
background-color: #ececec;
}
.seat-chart-wrapper {
padding: 60px 0;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}
.preview-page-content {
display: flex;
justify-content: center;
@ -11,7 +46,6 @@
}
.preview-attendance-table {
width: 40%;
padding-left: 50px;
}
.seat-chart-wrapper {
width: 60%;
@ -62,3 +96,7 @@ div.seatCharts-seat.available {
div.seatCharts-seat.taken {
background-color: #649a24;
}
.front-indicator {
width: 100%;
margin: 5px 0;
}

View File

@ -10,8 +10,8 @@
<title>@CHECK | @yield('title')</title>
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}" defer></script>
<script src="{{ asset('js/custom.js') }}" defer></script>
<script src="{{ secure_asset('js/app.js') }}" defer></script>
<script src="{{ secure_asset('js/custom.js') }}" defer></script>
<!-- Fonts -->
@ -19,8 +19,8 @@
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<!-- Styles -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<link rel="shortcut icon" href="{{ asset('img/favicon.png') }}">
<link href="{{ secure_asset('css/app.css') }}" rel="stylesheet">
<link rel="shortcut icon" href="{{ secure_asset('img/favicon.png') }}">
@yield('main_meta')
</head>