mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
book cases added
This commit is contained in:
@@ -9,32 +9,46 @@
|
||||
@googlefonts
|
||||
<!-- Scripts -->
|
||||
<script src="https://kit.fontawesome.com/03bc14bd1e.js" crossorigin="anonymous"></script>
|
||||
@mapscripts
|
||||
<wireui:scripts/>
|
||||
<x-comments::scripts />
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
<!-- Styles -->
|
||||
<x-comments::styles />
|
||||
@livewireStyles
|
||||
@mapstyles
|
||||
<style>
|
||||
#seekObjContainer {
|
||||
position: relative;
|
||||
width: 400px;
|
||||
margin: 0 5px;
|
||||
height: 5px;
|
||||
}
|
||||
.comments {
|
||||
--comments-color-background: rgb(34, 34, 34);
|
||||
--comments-color-background: rgb(34, 34, 34);
|
||||
--comments-color-background-nested: rgb(34, 34, 34);
|
||||
--comments-color-background-paper: rgb(55, 51, 51);
|
||||
--comments-color-background-info: rgb(104, 89, 214);
|
||||
|
||||
#seekObj {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #e3e3e3;
|
||||
border: 1px solid black;
|
||||
}
|
||||
--comments-color-reaction: rgb(59, 59, 59);
|
||||
--comments-color-reaction-hover: rgb(65, 63, 63);
|
||||
--comments-color-reacted: rgba(67, 56, 202, 0.25);
|
||||
--comments-color-reacted-hover: rgba(67, 56, 202, 0.5);
|
||||
|
||||
#percentage {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
background-color: coral;
|
||||
--comments-color-border: rgb(221, 221, 221);
|
||||
|
||||
--comments-color-text:white;
|
||||
--comments-color-text-dimmed: rgb(164, 164, 164);
|
||||
--comments-color-text-inverse: white;
|
||||
|
||||
--comments-color-accent: rgba(67, 56, 202);
|
||||
--comments-color-accent-hover: rgba(67, 56, 202, 0.75);
|
||||
|
||||
--comments-color-danger: rgb(225, 29, 72);
|
||||
--comments-color-danger-hover: rgb(225, 29, 72, 0.75);
|
||||
|
||||
--comments-color-success: rgb(10, 200, 134);
|
||||
--comments-color-success-hover: rgb(10, 200, 134, 0.75);
|
||||
|
||||
--comments-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
||||
}
|
||||
.comments-button {
|
||||
background-color: #F7931A !important;
|
||||
}
|
||||
|
||||
[x-cloak] {
|
||||
@@ -43,7 +57,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body class="font-sans antialiased bg-21gray dark">
|
||||
<x-notifications z-index="z-50"/>
|
||||
<x-notifications z-index="z-50" blur="md" align="center"/>
|
||||
<x-jet-banner/>
|
||||
<div class="min-h-screen">
|
||||
@auth
|
||||
|
||||
@@ -10,17 +10,51 @@
|
||||
<!-- Scripts -->
|
||||
<script src="https://kit.fontawesome.com/03bc14bd1e.js" crossorigin="anonymous"></script>
|
||||
<wireui:scripts/>
|
||||
<x-comments::scripts />
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
<!-- Styles -->
|
||||
@livewireStyles
|
||||
<style>
|
||||
.comments {
|
||||
--comments-color-background: rgb(34, 34, 34);
|
||||
--comments-color-background: rgb(34, 34, 34);
|
||||
--comments-color-background-nested: rgb(34, 34, 34);
|
||||
--comments-color-background-paper: rgb(55, 51, 51);
|
||||
--comments-color-background-info: rgb(104, 89, 214);
|
||||
|
||||
--comments-color-reaction: rgb(59, 59, 59);
|
||||
--comments-color-reaction-hover: rgb(65, 63, 63);
|
||||
--comments-color-reacted: rgba(67, 56, 202, 0.25);
|
||||
--comments-color-reacted-hover: rgba(67, 56, 202, 0.5);
|
||||
|
||||
--comments-color-border: rgb(221, 221, 221);
|
||||
|
||||
--comments-color-text:white;
|
||||
--comments-color-text-dimmed: rgb(164, 164, 164);
|
||||
--comments-color-text-inverse: white;
|
||||
|
||||
--comments-color-accent: rgba(67, 56, 202);
|
||||
--comments-color-accent-hover: rgba(67, 56, 202, 0.75);
|
||||
|
||||
--comments-color-danger: rgb(225, 29, 72);
|
||||
--comments-color-danger-hover: rgb(225, 29, 72, 0.75);
|
||||
|
||||
--comments-color-success: rgb(10, 200, 134);
|
||||
--comments-color-success-hover: rgb(10, 200, 134, 0.75);
|
||||
|
||||
--comments-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
||||
}
|
||||
.comments-button {
|
||||
background-color: #F7931A !important;
|
||||
}
|
||||
|
||||
[x-cloak] {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="font-sans antialiased bg-21gray dark">
|
||||
<x-notifications z-index="z-50"/>
|
||||
<x-notifications z-index="z-50" blur="md" align="center"/>
|
||||
{{ $slot }}
|
||||
@stack('modals')
|
||||
@livewireScripts
|
||||
|
||||
Reference in New Issue
Block a user