Update demo
This commit is contained in:
parent
769df09ee4
commit
38b4f49264
5 changed files with 33 additions and 6 deletions
|
@ -9,6 +9,7 @@ const {
|
|||
// Components
|
||||
import Header from '@components/Header.astro'
|
||||
import Info from '@components/Info.astro'
|
||||
import Switcher from '@components/Switcher.astro'
|
||||
---
|
||||
<html>
|
||||
<head>
|
||||
|
@ -17,6 +18,10 @@ import Info from '@components/Info.astro'
|
|||
</head>
|
||||
<body>
|
||||
<Header/>
|
||||
<br/>
|
||||
<Switcher/>
|
||||
<br/>
|
||||
<br/>
|
||||
<slot/>
|
||||
<Info Title={Title} Description={Description}>
|
||||
<div class="info-section"><slot name="info"></slot></div>
|
||||
|
@ -27,13 +32,23 @@ import Info from '@components/Info.astro'
|
|||
|
||||
<style is:global is:inline>
|
||||
body {
|
||||
background: #010101;
|
||||
color: white;
|
||||
background: white;
|
||||
color: black;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
margin: auto;
|
||||
max-width: 1200px;
|
||||
&::before {
|
||||
content: "";
|
||||
background: #010101;
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
z-index: -1;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
.video-container {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue