Update newthunix.css

This commit is contained in:
deepend-tildeclub 2024-12-01 21:35:59 -07:00 committed by GitHub
parent e65540137e
commit e9cc392d16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 65 additions and 15 deletions

View File

@ -1,16 +1,66 @@
@font-face { font-family: dot; src: url('https://thunix.net/includes/dot.ttf'); } @font-face { font-family: dot; src: url('https://thunix.net/includes/dot.ttf'); }
body{font-family:"dot",Courier,monospace;background:#000;color:#F79862} body {
#body{width:95%} font-family: "dot", Courier, monospace;
#body h1{color:orange} background: #000;
#body h2{color:orange} color: #F79862;
#body h3{color:orange} }
a{background:#000;color:#F79862} #body {
a:visited{color:orange} width: 95%;
#header{width:90%;text-align:center;font-size:xx-large} }
#content{width:78%;float:left;font-size:medium} #body h1, #body h2, #body h3 {
#content img{max-height:400px;max-width:98%} color: orange;
.lineitem{border:1px;border-color:#fff} }
#sidebar{width:18%;float:right;font-size:small} a {
#sidebar h1{color:orange;background:#000} background: #000;
#sidebar h2{color:orange;background:#000} color: #F79862;
#footer{width:95%;text-align:center;clear:both;font-size:smaller} }
a:visited {
color: orange;
}
#header {
width: 90%;
text-align: center;
font-size: xx-large;
}
#content {
width: 78%;
float: left;
font-size: medium;
}
#content img {
max-height: 400px;
max-width: 98%;
}
.lineitem {
border: 1px;
border-color: #fff;
}
#sidebar {
width: 18%;
float: right;
font-size: small;
padding: 15px; /* Increase padding for more internal spacing */
margin-top: 20px; /* Add more space between the sidebar and elements above it */
margin-left: 10px; /* Add space between the sidebar and content */
background-color: #111; /* Ensure the sidebar stands out slightly */
line-height: 1.5; /* Increase line height for better readability */
border: 1px solid #333; /* Optional: Add a subtle border to separate the sidebar visually */
}
#sidebar h1, #sidebar h2 {
color: orange;
/* background: #000; */
margin-bottom: 15px; /* Further space below headings */
padding-bottom: 5px; /* Add padding under headings for better distinction */
border-bottom: 1px solid #333; /* Optional: Add an underline effect for headings */
}
#sidebar ul, #sidebar p {
margin: 10px 0; /* Add vertical spacing between sidebar elements */
padding-left: 20px; /* Indent list items for better clarity */
}
#footer {
width: 95%;
text-align: center;
clear: both;
font-size: smaller;
}