Go Down Skip to main content

Author Topic: Hey let's make thread with really really really really really really long title!

0 Members and 1 Guest are viewing this topic.

  • *****
  • Administrator
  • Posts: 62
  • Cave-dwelling
  • finger of piglets
    • Vanilla 20x
Code: [Select]
/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */
/* Standard links, and links that open in a new window. */
a:link, a:visited,
a.new_win:link, a.new_win:visited {
color: #414f72;
text-decoration: none;
}
a:hover, a.new_win:hover,
a:focus, a.new_win:focus {
text-decoration: underline #666;
}
/* Tables should show empty cells. */
table {
empty-cells: show;
}
html {
background-color: #e9eef2;
/* Reset to 10px base for easy font sizing. */
font-size: 62.5%;
}
/* Set Retina font-size to browser default. */
@media screen and (min-resolution: 160dpi) {
html {
font-size: 71.43%;
}
}
body {
margin: 0;
padding: 15px 0 3em;
/* Backdrop gradient. */
background-image: linear-gradient(#375976 0, #e9eef2 500px);
/* Typography update. */
color: #4f4f4f;
font: 1.4rem/2rem "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}
/* Help popups have body styling. */
body#help_popup {
min-height: 480px;
padding: 1em;
}
/* Container for the forum. */
#wrapper {
position: relative;
box-sizing: border-box;
background-color: #fff;
/* Main header gradient. */
background-image: linear-gradient(#c9d7e7 0, #fff 130px);
border: 1px solid #aaa;
border-radius: 8px;
box-shadow: inset 2px 0 0 #fff, inset -2px 0 0 #fff;
}
/* Optional max-width on large screens. */
#wrapper, .footer {
max-width: 88em;
margin: 0 auto;
}
/* Inset header gradient.*/
#wrapper::before {
position: absolute;
display: block;
content: "";
top: 54px;
bottom: 152px;
left: 8px;
right: 8px;
background-image: linear-gradient(#becbda 0, #fff 80px);
border-radius: 6px 6px 0 0;
}
/* Main lower gradient.*/
#wrapper::after {
position: absolute;
display: block;
content: "";
bottom: 0;
left: 0;
right: 0;
height: 50px;
background-image: linear-gradient(#fff, #e0e8f2);
border-radius: 0 0 8px 8px;
}
/* Custom highlighted text style for modern browsers */
/* Nicer than default blue. Needs two separate rules */
::-moz-selection {
background: #4f677d;
color: #fff;
}
::selection {
background: #4f677d;
color: #fff;
}
/* Generic form elements. */
form {
padding: 0;
margin: 0;
}
/* Style input buttons to be uniform with different browsers and themes.
.button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
.button_reset  - covers input[type=reset] and button[type=reset] in all browsers
.input_check   - covers input[type=checkbox] in all browsers
.input_radio   - covers input[type=radio] in all browsers
.input_text    - covers input[type=text] in all browsers
.input_file    - covers input[type=file] in all browsers
*/
/* Cross-browser declarations for inputs, selects and buttons */
input, .input_text, button, select {
-moz-box-sizing: border-box;
box-sizing: border-box;
max-width: 90vw;
min-height: 2.4rem;
max-height: 2.4rem;
margin: 0;
padding: 0 4px;
font: 1.3rem/1.8rem "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
border: 1px solid #7f9db9;
border-radius: 2px;
vertical-align: bottom;
}
/* Selects look bad with padding, but better */
/* with some padding on the options listing. */
select {
padding: 0;
}
select>option {
padding: 0 6px;
}
/* Buttons styled to look like buttons. */
input[type=button], button, .button_submit, .button_reset {
background: #cde7ff;
cursor: pointer;
box-shadow: inset 1px 1px 0 #fff;
}
.additional_row .button_submit,
.additional_row .input_text,
.additional_row select {
margin: 5px 2px;
}
input[type=button]:hover, button:hover, .button_submit:hover, .button_reset:hover,
input[type=button]:focus, button:focus, .button_submit:focus, .button_reset:focus {
background: #dceeff;
border: 1px solid #666;
}
input:hover, textarea:hover, select:hover,
input:focus, textarea:focus, select:focus {
border: 1px solid #666;
}
/* Checkboxes and radio buttons. */
.input_check, .input_radio {
border: 0;
background: none;
}
/* Disabled text inputs get a different background. */
input[disabled].input_text {
background-color: #eee;
}
/* Textareas need their own declaration for font. */
textarea {
box-sizing: border-box;
max-width: 100%;
min-width: 100%;
margin: 0;
padding: 4px;
font: 1.4rem/2rem "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
border: 1px solid #7f9db9;
}
.roundframe textarea {
border: 1px solid #c8c8c4;
}
  • IP logged
Stands out like a mate's rate flamin you little ripper galah. :)

 
Go Up