Flask application which powers the conceptnull.org website, using MediaWiki as it's backend.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

236 lines
3.6 KiB

1 month ago
html {
height: 100%;
width: 100%;
5 months ago
}
1 month ago
/* Reset some default styles */
body, h1, h2, h3, p, ul, li, a {
margin: 0;
padding: 0;
box-sizing: border-box;
5 months ago
}
1 month ago
/* General body styling */
body {
font-family: "Inter", serif;
font-optical-sizing: auto;
font-style: normal;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
padding: 0px;
height: 100vh;
width: 100vw;
overflow: hidden;
}
1 month ago
* {
margin:0;
padding:0;
border:0;
font-family: "Inter", serif;
-webkit-text-size-adjust:none;
}
a {
text-decoration: none;
color:black;
}
1 month ago
#main-container {
height: 100%;
width: 100%;
display: flex;
flex-direction: row;
}
1 month ago
/* index */
#index-container {
display: flex;
flex: 0 0 35%;
flex-direction: column;
width: 100%;
padding-top: 20px;
padding-bottom: 20px;
gap: 40px;
overflow-y: scroll;
overflow-x: hidden;
1 month ago
align-items: center;
}
1 month ago
#index-container::-webkit-scrollbar {
display: none;
}
1 month ago
#index-header {
padding-left: 60px;
padding-right: 60px;
1 month ago
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 20px;
8 months ago
}
1 month ago
#index-content {
padding-left: 60px;
padding-right: 60px;
8 months ago
}
1 month ago
#index-links {
padding-left: 60px;
padding-right: 60px;
}
1 month ago
#index-link-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
}
1 month ago
#content-container {
display: flex;
flex-direction: column;
flex-grow: 1;
width: 100%;
padding: 40px;
padding-top: 20px;
gap: 40px;
overflow-y: scroll;
overflow-x: hidden;
}
1 month ago
#content-container a{
text-decoration: underline;
color:blue;
}
1 month ago
#content-title {
text-decoration: underline;
}
1 month ago
#content-body {
display: flex;
flex-direction: column;
gap: 20px;
}
1 month ago
#content-body img{
width: 100%;
height: auto;
object-fit: contain;
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%) contrast(1.75);
}
#wiki-box {
border-style: dashed;
}
1 month ago
#line-divider {
width: 2px; /* Thickness of the divider */
background-color: black; /* Color of the line */
9 months ago
}
1 month ago
/*
table
*/
table {
display: table;
border-collapse: separate;
box-sizing: border-box;
text-indent: initial;
unicode-bidi: isolate;
border-spacing: 20px;
border-color: gray;
border-radius: 30px;
font-size: 16px;
}
th {
text-transform: uppercase;
}
1 month ago
/*
classes
*/
9 months ago
1 month ago
.title {
font-size: 60px;
font-weight: bold;
text-transform: uppercase;
9 months ago
}
1 month ago
p {
font-size: 20px;
font-weight: normal;
9 months ago
}
1 month ago
.button-link {
display: inline-block;
padding: 15px 30px;
background-color: #D9D9D9; /* Green background */
color: black;
1 month ago
text-decoration: none;
border-radius: 30px;
font-size: 20px;
1 month ago
font-weight: normal;
text-align: center;
text-transform: lowercase;
}
1 month ago
.disable-scrollbar{
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
1 month ago
.astr-line {
text-align: center;
font-size: 48px;
}
1 month ago
.mw-parser-output {
display: flex;
flex-direction: column;
gap: 20px;
}
1 month ago
.ascii {
font-family: 'Courier New', Courier, monospace;
white-space: pre;
width: fit-content;
font-size: 12px;
font-weight: bold;
}
1 month ago
/* headers */
h4 {
font-size: 24px;
margin: 0;
color: black;
}
h3 {
font-size: 26px;
margin: 0;
color: black;
}
h2 {
font-size: 28px;
margin: 0;
color: black;
}
h1 {
font-size: 30px;
margin: 0;
color: black;
}
hr {
border-top: 1px solid black;
}