82 lines
1.8 KiB
CSS
82 lines
1.8 KiB
CSS
body {
|
|
background-color: #000;
|
|
margin: 0;
|
|
height: 100;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: IBMWeb;
|
|
src: url('/assets/fonts/ibm9x16.woff') format('truetype');
|
|
}
|
|
|
|
/* Ascii logo */
|
|
.ascii-logo {
|
|
font-family: monospace;
|
|
white-space: pre;
|
|
color: #a57ae9;
|
|
top: 50px;
|
|
}
|
|
/* End of Ascii logo */
|
|
|
|
/* The main content of the website */
|
|
.content1 {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
font-family: IBMWeb, Liberation Mono, monospace;
|
|
background-color: #000000;
|
|
color: #a57ae9;
|
|
font-size: 1.0em;
|
|
white-space: normal;
|
|
/* color: #a57ae9; */
|
|
}
|
|
/* End of the main content of the website */
|
|
|
|
/* You may ask yourself why are there two identical css sections. */
|
|
.content2 {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
font-family: IBMWeb, Liberation Mono, monospace;
|
|
white-space: normal;
|
|
color: #a57ae9;
|
|
font-size: large;
|
|
}
|
|
/* Very easy one is for articels or just post idk how to call them and the content1 thing if for general usage */
|
|
|
|
/*Code to make footer look cool and ncie :D*/
|
|
footer {
|
|
font-family: IBMWeb, Liberation Mono, monospace;
|
|
position: fixed;
|
|
text-align: center;
|
|
bottom: 0;
|
|
width: 100%;
|
|
padding: 1em;
|
|
color: white;
|
|
text-decoration: none;
|
|
background: transparent;
|
|
}
|
|
/* End of the code which makes the footer look nice :( */
|
|
|
|
/* Makes hyperlinks not look like shit */
|
|
a {
|
|
text-decoration: none;
|
|
color: #447fc6;
|
|
}
|
|
/* End of the code which makes hyperlink usable */
|
|
/* The Css for the article website */
|
|
.article {
|
|
margin-left: 35px;
|
|
margin-right: 35px;
|
|
font-family: monospace;
|
|
color: #a57ae9;
|
|
font-size: small;
|
|
}
|
|
|
|
/* CSS to make the guides look nice. */
|
|
.ascii-logo2 {
|
|
font-family: monospace;
|
|
white-space: pre;
|
|
color: #a57ae9;
|
|
top: 50px;
|
|
}
|