|
|
|
body, html { |
|
margin: 0; |
|
padding: 0; |
|
height: 100%; |
|
background-color: #000; |
|
color: #fff; |
|
font-family: Arial, sans-serif; |
|
} |
|
|
|
body::before { |
|
content: ""; |
|
position: fixed; |
|
left: 0; |
|
right: 0; |
|
top: 0; |
|
bottom: 0; |
|
border: 5px solid #ff0000; |
|
pointer-events: none; |
|
} |
|
|
|
.gradio { |
|
--color-bg: #000; |
|
--color-text: #fff; |
|
--color-border: #808080; |
|
--color-primary: #ff0000; |
|
--color-primary-contrast: #fff; |
|
box-sizing: border-box; |
|
position: relative; |
|
max-width: calc(100% - 10px); |
|
margin: 5px auto; |
|
} |
|
|
|
|
|
.image img, .audio audio { |
|
width: 200%; |
|
height: auto; |
|
} |
|
|
|
|
|
.textbox, .image, .audio { |
|
border: 2px solid #808080; |
|
padding: 10px; |
|
margin-top: 10px; |
|
background-color: #111; |
|
} |
|
|
|
|
|
.button { |
|
background-color: var(--color-primary); |
|
color: var(--color-primary-contrast); |
|
padding: 10px 20px; |
|
border: none; |
|
cursor: pointer; |
|
font-size: 16px; |
|
margin-top: 10px; |
|
border-radius: 4px; |
|
} |
|
|
|
.button:hover { |
|
background-color: #d10000; |
|
} |
|
|
|
|
|
.row { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
width: 100%; |
|
} |
|
|
|
|
|
@media (max-width: 768px) { |
|
.image img, .audio audio { |
|
width: 100%; |
|
} |
|
} |
|
|