81 lines
1.4 KiB
CSS
81 lines
1.4 KiB
CSS
/* Magic fix which forces outer most element to full view size for background scaling */
|
|
html {
|
|
min-height: 100%;
|
|
min-width: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: monospace;
|
|
color: #e4e4e4;
|
|
font-size: 18px;
|
|
margin: 5rem auto;
|
|
max-width: 57rem;
|
|
line-height: 1.4;
|
|
-webkit-hyphens: auto;
|
|
-ms-hyphens: auto;
|
|
hyphens: auto;
|
|
/* Fancy background CSS lives here */
|
|
background: linear-gradient(to bottom right, rgba(0,0,0, 1), rgba(60,14,90, 1) 40%, rgba(55,17,95, 1) 50%, rgba(32,14,84, 1) 60%, rgba(0,0,0, 1));
|
|
}
|
|
|
|
ul {
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
li {
|
|
margin-top: 1rem;
|
|
list-style-type: none;
|
|
}
|
|
|
|
a {
|
|
color: #4361ee;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:visited {
|
|
color: #6d49ca;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#site-content {
|
|
padding: 1rem;
|
|
padding-bottom: 2rem;
|
|
border-radius: 1rem;
|
|
background: rgba(0,0,0, 0.7);
|
|
box-shadow: 1rem 1rem 1rem 1rem rgba(0,0,0, 0.5);
|
|
text-align: center;
|
|
}
|
|
|
|
#ascii-header {
|
|
font-size: 10px;
|
|
color: #e4e4e4;
|
|
text-decoration: none;
|
|
margin: 1rem;
|
|
padding-bottom: 14px;
|
|
border-bottom: #e4e4e4 8px dotted;
|
|
}
|
|
|
|
#ascii-header a {
|
|
color: #e4e4e4;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#ascii-header a:visited {
|
|
color: #e4e4e4;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#welcome-message {
|
|
margin: 1rem;
|
|
padding-bottom: 14px;
|
|
font-weight: bold;
|
|
border-bottom: #e4e4e4 8px dotted;
|
|
}
|
|
|
|
.title {
|
|
letter-spacing: -2px;
|
|
}
|