initial commit
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Teletype Softwares</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||||
<style>
|
||||
body {
|
||||
background-color: black;
|
||||
color: limegreen; /* Light green */
|
||||
font-family: "Lucida Console", "Courier New", monospace;
|
||||
}
|
||||
.card {
|
||||
background-color: #333; /* Darker background for cards */
|
||||
color: limegreen;
|
||||
border: 1px solid limegreen;
|
||||
}
|
||||
a {
|
||||
color: limegreen;
|
||||
}
|
||||
a:hover {
|
||||
color: #00FF00; /* Brighter green on hover */
|
||||
}
|
||||
.btn-primary {
|
||||
background-color: limegreen;
|
||||
border-color: limegreen;
|
||||
color: black;
|
||||
}
|
||||
.btn-primary:hover {
|
||||
background-color: #00FF00;
|
||||
border-color: #00FF00;
|
||||
color: black;
|
||||
}
|
||||
|
||||
/* Table styling for black background and green borders */
|
||||
.table {
|
||||
--bs-table-bg: black; /* Bootstrap 5 variable for table background */
|
||||
--bs-table-color: limegreen; /* Text color for table */
|
||||
--bs-table-border-color: limegreen; /* Border color for the table and cells */
|
||||
}
|
||||
.table-striped > tbody > tr:nth-of-type(odd) > * {
|
||||
--bs-table-bg-type: #1a1a1a; /* Slightly lighter black for striped rows */
|
||||
color: limegreen;
|
||||
}
|
||||
.table-hover > tbody > tr:hover > * {
|
||||
--bs-table-hover-bg: #444; /* Darker grey on hover */
|
||||
color: limegreen;
|
||||
}
|
||||
.table-bordered > :not(caption) > * > * {
|
||||
border-color: limegreen;
|
||||
}
|
||||
.bg-dark { /* Ensure consistency for manually set dark backgrounds */
|
||||
background-color: black !important;
|
||||
}
|
||||
.text-success { /* Ensure consistency for success text */
|
||||
color: limegreen !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container mt-4">
|
||||
<h1 class="text-center mb-4">Teletype Games</h1>
|
||||
{{block "content" .}}{{end}}
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user