[ home / overboard ] [ soy / qa / mtv / dem ] [ int / pol ] [ a / asp / biz / fit / k / r9k / sude / tech / tv / v / x ] [ q / news / chive / rules / pass / bans ] [ wiki / booru / irc ]

A banner for soyjak.party

/tech/ - Soyence and Technology

Download more RAM for your Mac here
Catalog
Email
Subject
Comment
File
Password (For file deletion.)

File: 1741776924861d.png 📥︎ (349.93 KB, 640x581) ImgOps

 â„–11950[Quote]

/*guyshelp me on this css, i made this using chatgpt, i have a problem, i keep asking it to change the post field and style it like the report field but it fails*/
/* General font change for posts and replies */
div.post, div.post.reply {
font-family: 'Times New Roman', serif; /* Times New Roman font */
font-size: 14px; /* Adjust the font size if needed */
}

/* Input fields in the post form */
form#postform input[type="text"],
form#postform textarea {
font-family: 'Times New Roman', serif; /* Set the font for input fields */
font-size: 14px;
background-color: #f9f9f9;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
}

/* Style the submit button in the post form */
form#postform input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}

/* Hover effect for submit button */
form#postform input[type="submit"]:hover {
background-color: #45a049;
}

/* Styling for the overall post form */
form#postform {
background: linear-gradient(to bottom, #f0f0f0 0%, #d1d1d1 50%, #f0f0f0 100%);
padding: 15px;
border-radius: 15px;
}

/* Style for the form labels */
form#postform label {
font-size: 16px;
color: #2d8b59; /* Change to your desired label color */
}

/* Modify headers (e.g., post title) */
h1 {
color: #FFFF00; /* Header color changed to yellow */
font-family: 'Georgia', serif; /* You can adjust this to 'Times New Roman' if needed */
text-align: center;
}

/* General post and reply styling with sooty background */
.name {
color: #FFFF00 !important;
font-weight: bold;
text-shadow: 1px 1px 2px #FF4500, 0 0 25px #FFFF00, 0 0 5px #FF4500;
}

body {
background:
url('https://booru.soyjak.st/_images/148090bbd079fcec8a050ce96873d88f/62383%20-%20SoyBooru.gif') right bottom no-repeat fixed,
#3C3A36; /* Darker, sootier background */
background-size: 100vw auto; /* Full width of viewport */
background-blend-mode: normal;
}

div.post.reply,
div.post.op {
background-color: #1E1E1E !important;
color: #FFFF00;
border-radius: 8px; /* Slightly rounded corners */
border: 2px solid #FFD700; /* Soft golden border */
padding: 15px; /* Space inside */
}

div#post-moderation-fields, div#style-select {
padding: 4px;
background-color: rgba(0, 0, 0, 0.5);
}

span.heading {
color: #FFD700 !important;
}

.remove-btn {
color: rgba(255, 255, 255, 0.3) !important;
}

hr {
border-color: #3B3B3B;
}

.filename, .tripcode {
color: #FFFF00;
font-weight: bold;
text-shadow: 1px 1px 3px #000, 0 0 15px #FFFF00, 0 0 10px #FFFF00;
}

/* Style for the report field under posts */
div#post-moderation-fields {
background-color: #2B2B2B; /* Dark gray background for report field */
color: #FFFF00; /* Yellow text for contrast */
border-radius: 8px; /* Rounded corners */
padding: 12px; /* Added padding for better spacing */
border: 2px solid #FFD700; /* Golden border to match posts */
}

div#post-moderation-fields input[type="submit"] {
background-color: #FFD700; /* Golden button for report submission */
color: #1E1E1E; /* Dark text on button */
border: none;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
}

div#post-moderation-fields input[type="submit"]:hover {
background-color: #FF4500; /* Hover effect for the submit button */
}

 â„–11952[Quote]

/* i managed to style the post field with this css but cant copy my success on the other css */
/* Main Name Styling */
.name {
color: #FFFF00 !important;
font-weight: bold;
text-shadow: 1px 1px 2px #FF4500, 0 0 25px #FFFF00, 0 0 5px #FF4500;
}

/* Body styling with background image and color */
body {
background:
url('https://booru.soyjak.st/_images/148090bbd079fcec8a050ce96873d88f/62383%20-%20SoyBooru.gif') right bottom no-repeat fixed,
#D1C28B; /* Grayish yellow background */
background-size: 100vw auto;
background-blend-mode: normal;
}

/* Post reply and OP styling */
div.post.reply,
div.post.op {
background-color: #1E1E1E !important;
color: #FFFF00;
border-radius: 6px; /* Slightly rounded corners for posts */
border: 2px solid #FFD700; /* Soft golden border */
padding: 15px;
transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth hover transition */
}

/* Hover effect for posts (orange background and border) */
div.post.reply:hover,
div.post.op:hover {
background-color: #FF4500; /* Orange background */
border-color: #FFA500; /* Lighter orange border */
color: white; /* Change text to white on hover */
}

/* Styling for the report field (post moderation) */
div#post-moderation-fields {
background-color: #2B2B2B;
color: #FFFF00;
border-radius: 6px;
padding: 12px;
border: 2px solid #FFD700;
transition: background-color 0.3s ease;
}

/* Hover effect for report field */
div#post-moderation-fields:hover {
background-color: #FF4500;
border-color: #FFA500;
}

/* Submit button in the report field */
div#post-moderation-fields input[type="submit"] {
background-color: #FFD700;
color: #1E1E1E;
border: none;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

/* Hover effect for the submit button */
div#post-moderation-fields input[type="submit"]:hover {
background-color: #FF4500;
color: white;
}

/* Filenames and Tripcodes styling */
.filename, .tripcode {
color: #FFFF00;
font-weight: bold;
text-shadow: 1px 1px 3px #000, 0 0 15px #FFFF00, 0 0 10px #FFFF00;
transition: color 0.3s ease;
}

/* Hover effect for filenames and tripcodes */
.filename:hover, .tripcode:hover {
color: #FF4500; /* Change color to orange */
}

/* Styling for the post header (user names, etc.) */
span.heading {
color: #FFD700 !important;
transition: color 0.3s ease;
}

/* Hover effect for post header */
span.heading:hover {
color: #FF4500; /* Orange color when hovered */
}

/* Remove button styling */
.remove-btn {
color: rgba(255, 255, 255, 0.3) !important;
}

/* Horizontal rule (divider) */
hr {
border-color: #3B3B3B;
}

/* Input and textarea field styles */
input, textarea {
border-radius: 6px;
padding: 8px;
background-color: #333333;
color: #FFFF00;
border: 2px solid #FFD700;
transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for input and textarea */
input:hover, textarea:hover {
border-color: #FF4500;
background-color: #555555; /* Slightly darker background */
}

/* Post reply field styling */
div.post-reply {
border-radius: 6px;
background-color: #2B2B2B;
border: 2px solid #FFD700;
padding: 12px;
transition: border-color 0.3s ease;
}

/* Hover effect for the reply field */
div.post-reply:hover {
border-color: #FF4500; /* Orange border on hover */
}

 â„–12048[Quote]

thank you for your contribution



[Return][Catalog][Go to top][Post a Reply]
Delete Post [ ]
[ home / overboard ] [ soy / qa / mtv / dem ] [ int / pol ] [ a / asp / biz / fit / k / r9k / sude / tech / tv / v / x ] [ q / news / chive / rules / pass / bans ] [ wiki / booru / irc ]