Add license; make corrections; cleanup

This commit is contained in:
2022-05-15 09:56:45 -04:00
parent 7d17d88b60
commit 24c2bcfff0
40 changed files with 355 additions and 493 deletions

View File

@@ -1,145 +0,0 @@
.container {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.9);
z-index: 100;
}
.search {
display: block;
width: 100%;
max-width: 1018px;
margin: 0 auto;
font-size: 2rem;
background: linear-gradient(to bottom right, #406b39, #225546) no-repeat center center fixed;
box-shadow: inset 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 0.5rem 1.75rem;
color: rgb(255, 255, 255);
border: none;
outline: none;
}
.search::placeholder {
color: rgb(214, 214, 214);
font-style: italic;
}
.results {
max-width: 1018px;
padding: 1rem;
margin: 2rem auto;
}
.hyperlink {
color: #009dff;
display: block;
padding: 0.5rem;
width: 100%;
margin: 0 auto;
font-size: 1.2rem;
transition: 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
text-decoration: none;
border: 1px solid #AAAAAA;
border-top: none;
}
.hyperlink:first-child {
border-top: 1px solid #AAAAAA;
border-radius: 0.5rem 0.5rem 0 0;
}
.hyperlink:last-child {
border-radius: 0 0 0.5rem 0.5rem;
}
.hyperlink:only-child {
border-radius: 0.5rem;
}
.hyperlink:hover {
color: #ccc;
text-decoration: none;
background: linear-gradient(to bottom right, #1a3a15, #09351b) no-repeat center center fixed;
}
.hyperlink:focus {
box-shadow: 0 0 1px 1px rgb(255, 255, 255);
}
.hyperlink-name {
color: #FFFFFF;
}
.hyperlink:hover .hyperlink-name {
color: #ccc;
}
.hyperlink-url {
word-break: break-all;
text-align: right;
font-size: 1rem;
transition: 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hyperlink:hover .hyperlink-url {
color: #009dff;
}
.highlight {
text-decoration: underline;
}
.searchBar {
user-select: none;
background: linear-gradient(to bottom right, #406b39, #225546) no-repeat center center fixed;
box-shadow: inset 0 4px 8px 0 rgba(0, 0, 0, 0.2);
color: #CCCCCC;
text-decoration: none;
z-index: 1000;
position: fixed;
padding: 0 0.5rem;
right: 0;
bottom: 0;
display: inline-block;
cursor: pointer;
}
.searchBar:hover {
text-decoration: none;
}
.searchTerm {
display: block;
margin: 0.5rem;
float: left;
}
.searchTerm::before {
display: inline-block;
transform: rotate(-45deg) scale(1.4);
content: '\26B2';
margin-right: 0.5rem;
}
.keybind {
padding: 0;
margin: 0.25rem;
height: 2.25rem;
font-family: monospace;
display: inline-block;
}
.keybind .key {
background: #333333;
display: inline-block;
position: relative;
margin: 0.25rem 0;
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
border: 1px solid #232323;
border-radius: 0.5rem;
box-shadow: 1.5px 1.5px 0 0 #222222;
}

View File

@@ -12,46 +12,66 @@
@font-face {
font-family: 'Cantarell';
src: url('/assets/fonts/Cantarell-Regular.otf') format('opentype');
src: url('/assets/fonts/Cantarell/Cantarell-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Cantarell';
src: url('/assets/fonts/Cantarell-Thin.otf') format('opentype');
src: url('/assets/fonts/Cantarell/Cantarell-Thin.otf') format('opentype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Cantarell';
src: url('/assets/fonts/Cantarell-Light.otf') format('opentype');
src: url('/assets/fonts/Cantarell/Cantarell-Light.otf') format('opentype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Cantarell';
src: url('/assets/fonts/Cantarell-Bold.otf') format('opentype');
src: url('/assets/fonts/Cantarell/Cantarell-Bold.otf') format('opentype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Cantarell';
src: url('/assets/fonts/Cantarell-ExtraBold.otf') format('opentype');
src: url('/assets/fonts/Cantarell/Cantarell-ExtraBold.otf') format('opentype');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'EB Garamond';
src: url('/assets/fonts/EB_Garamond/static/EBGaramond-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'EB Garamond';
src: url('/assets/fonts/EB_Garamond/static/EBGaramond-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'EB Garamond';
src: url('/assets/fonts/EB_Garamond/static/EBGaramond-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
}
* {
box-sizing: border-box;
}
body {
font-family: 'Cantarell', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-family: 'Cantarell', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}
article,
@@ -161,7 +181,6 @@ pre {
table {
display: flex;
flex-direction: column;
border-radius: 1rem;
margin: 1rem 0;
overflow: hidden;
}
@@ -169,7 +188,6 @@ table {
table thead {
background: var(--secondary-green);
z-index: -1;
border-bottom: 1px solid #999999;
}
table thead tr,
@@ -185,12 +203,7 @@ table thead tr th,
table tbody tr td {
display: flex;
flex: 1;
padding: .5em;
}
table th+th,
table td+td {
border-left: 1px solid #999999;
padding: .25rem 0.75rem;
}
.lambda-logo {

View File

@@ -6,13 +6,18 @@
top: 0;
bottom: 0;
background-size: cover;
background-position: center;
background-position: top left;
min-height: 100%;
background-attachment: fixed;
}
.block {
background-color: rgba(13, 17, 23, 0.9);
font-family: 'EB Garamond', 'Garamond', 'Times New Roman', Times, serif;
background-color: rgba(13, 17, 23, 0.95);
margin: 0 auto;
border-radius: 0;
font-size: 1.25rem;
line-height: 2rem;
}
.spacer {