2023-06-15 16:32:27 +02:00
|
|
|
/*
|
2023-06-26 20:25:55 +02:00
|
|
|
Theme Name: Rainbow
|
2023-06-15 16:32:27 +02:00
|
|
|
Author: Marcoverga86, DeltaLima
|
2023-06-26 20:25:55 +02:00
|
|
|
Version: 2.2
|
2023-06-15 16:32:27 +02:00
|
|
|
Module: common.css
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ===== GENERAL (redefinition HTML tag) ===== */
|
|
|
|
html {
|
2023-06-17 01:54:36 +02:00
|
|
|
font-size: 14px;
|
2023-06-15 16:32:27 +02:00
|
|
|
font-family: Tahoma, 'Lucida Grande', 'Trebuchet MS', arial, Helvetica, sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2023-06-18 16:21:58 +02:00
|
|
|
color: #CCCCCC;
|
2023-06-15 16:32:27 +02:00
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
/*background: #315A94;*/
|
2023-06-26 19:59:56 +02:00
|
|
|
background-image: url("../imgs/background.jpg");
|
2023-06-19 00:56:24 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-position: bottom center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size:cover;
|
|
|
|
background-attachment:fixed;
|
|
|
|
background-color: #222;
|
|
|
|
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hr { display: none }
|
|
|
|
p { margin: .5em 0 }
|
|
|
|
img { border: none }
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
width: 90%;
|
|
|
|
margin: 1em 1em;
|
|
|
|
padding: 0 10px;
|
|
|
|
/*border-left: 10px solid white;*/
|
2023-06-20 02:15:41 +02:00
|
|
|
border-left: 10px solid #daaa55;
|
|
|
|
background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pre, code {
|
|
|
|
font-family: Lucida Console, Monaco, monospace;
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
2023-06-18 16:21:58 +02:00
|
|
|
|
|
|
|
border: 1px solid #555;
|
2023-06-20 02:15:41 +02:00
|
|
|
/*background-color: #444444;*/
|
|
|
|
|
2023-06-26 20:25:55 +02:00
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
2023-06-18 16:21:58 +02:00
|
|
|
color: #CCCCCC;
|
2023-06-15 16:32:27 +02:00
|
|
|
overflow: auto;
|
|
|
|
width: 90%;
|
|
|
|
margin: 1em 1em;
|
|
|
|
padding: 5px 10px;
|
2023-06-20 02:15:41 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 3px 3px 6px black;
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|
|
|
|
|
2023-06-26 20:25:55 +02:00
|
|
|
:not(pre) > code {
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 0px 3px;
|
|
|
|
}
|
|
|
|
|
2023-06-15 16:32:27 +02:00
|
|
|
ul, li, ol { margin: 0; padding: 0 }
|
|
|
|
|
|
|
|
/* === Form === */
|
|
|
|
form { margin: 1em 0 }
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
margin: 0 0 1em 0;
|
|
|
|
padding: .5em;
|
|
|
|
border: #ddd solid 1px
|
|
|
|
}
|
|
|
|
|
|
|
|
legend {
|
|
|
|
color: white;
|
|
|
|
font-size: 80%;
|
|
|
|
font-style: oblique
|
|
|
|
}
|
|
|
|
|
|
|
|
input, textarea {
|
|
|
|
padding: .1em;
|
2023-06-26 20:25:55 +02:00
|
|
|
border: 1px solid #315A94;;
|
2023-06-15 16:32:27 +02:00
|
|
|
font-family: 'Trebuchet MS', Tahoma, 'Times New Roman';
|
|
|
|
}
|
|
|
|
|
|
|
|
input, admin-static-filename {
|
|
|
|
font-weight:bold;
|
|
|
|
background-color: #A29D7D;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:hover, input:focus {
|
|
|
|
border: 1px solid #000099;
|
|
|
|
background-color: #DAAA55;
|
|
|
|
}
|
|
|
|
|
|
|
|
select { background-color: #ddd }
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
font-size: 100%;
|
|
|
|
font-family: 'Lucida Grande', 'Trebuchet MS', arial, Helvetica, sans-serif;
|
|
|
|
width: 99%;
|
|
|
|
margin-top: .1em;
|
|
|
|
margin-bottom: 1em;
|
2023-06-26 20:25:55 +02:00
|
|
|
background-color: #999999;
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ===== LINKS GENERAL ===== */
|
|
|
|
a:link, a:visited {
|
|
|
|
/*color: #0066ff;*/
|
2023-06-26 20:25:55 +02:00
|
|
|
color: #e69138;
|
2023-06-15 16:32:27 +02:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
/*color: #1100FF;*/
|
2023-06-26 20:25:55 +02:00
|
|
|
color: #f6b26b;
|
2023-06-15 16:32:27 +02:00
|
|
|
text-decoration: underline
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ===== HEADERS TAGS ===== */
|
|
|
|
h1, h2, h3, h4, h5, h6 { margin:0 }
|
|
|
|
h1 { font-size: 3em }
|
|
|
|
h2 { font-size: 2.3em }
|
|
|
|
h3 { font-size: 1.8em }
|
|
|
|
h4 { font-size: 1.5em }
|
|
|
|
h5 { font-size: 1.2em }
|
|
|
|
h6 { font-size: 0.9em }
|
|
|
|
|
|
|
|
/* ===== DIV CONTAINER ALL ELEMENTS BLOCK ===== */
|
|
|
|
#body-container {
|
|
|
|
text-align: left;
|
2023-06-19 01:50:14 +02:00
|
|
|
width: 72% !important;
|
|
|
|
width: 72%; /* fix for I.E. */
|
2023-06-19 01:37:41 +02:00
|
|
|
margin: 0 auto 0 auto;
|
2023-06-15 16:32:27 +02:00
|
|
|
padding: 5px;
|
2023-06-19 00:56:24 +02:00
|
|
|
/* background-color: #2D2D2D;*/
|
|
|
|
background-color: rgba(45, 45, 45, 0.8);
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 15px;
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ===== HEAD ===== */
|
|
|
|
#head {
|
2023-06-19 00:56:24 +02:00
|
|
|
/*background: url("../imgs/logo.jpg") no-repeat;*/
|
|
|
|
width: 680px; !important;
|
|
|
|
width: 680px;
|
2023-06-19 01:37:41 +02:00
|
|
|
height: 128px;
|
2023-06-15 16:32:27 +02:00
|
|
|
font-family: Tahoma, sans-serif;
|
|
|
|
float: center;
|
|
|
|
}
|
2023-06-19 00:56:24 +02:00
|
|
|
#head-bubble {
|
2023-06-19 02:08:00 +02:00
|
|
|
/* background-color: rgba(0, 0, 0, 0.2);*/
|
|
|
|
background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
|
2023-06-19 00:56:24 +02:00
|
|
|
border-radius: 15px;
|
|
|
|
width: 100% !important;
|
2023-06-19 01:37:41 +02:00
|
|
|
height: 124px;
|
|
|
|
margin: 5px 0 0 5px ;
|
2023-06-19 00:56:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#title-container {
|
|
|
|
width: 580px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
#logo-container {
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-top: 3px;
|
|
|
|
float: right;
|
2023-06-26 20:25:55 +02:00
|
|
|
|
2023-06-19 00:56:24 +02:00
|
|
|
}
|
|
|
|
#logo-img {
|
|
|
|
/*background: url("../imgs/Mandrake-Tux_redraw.png");*/
|
2023-06-26 20:25:55 +02:00
|
|
|
max-height: 120px;
|
|
|
|
max-width: 90px;
|
2023-06-19 00:56:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#clear-container {
|
|
|
|
clear: both;
|
|
|
|
}
|
2023-06-15 16:32:27 +02:00
|
|
|
|
|
|
|
#head a {
|
|
|
|
color: white;
|
|
|
|
font-weight: normal;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#head h1 { padding: 35px 20px 0 25px }
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
font-style: oblique;
|
|
|
|
color: white;
|
|
|
|
margin: .5em 0 0 0;
|
|
|
|
padding-left: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ===== MAIN ===== */
|
|
|
|
#main h1, #main h2, #main h3, #main h4, #main h5, #main h6 {
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
2023-06-17 00:58:43 +02:00
|
|
|
/*float:right;*/
|
2023-06-26 20:25:55 +02:00
|
|
|
overflow: hidden;
|
|
|
|
display: inline-block;
|
2023-06-15 16:32:27 +02:00
|
|
|
position: relative;
|
2023-06-19 01:37:41 +02:00
|
|
|
width: 73% !important;
|
|
|
|
width: 73%;
|
2023-06-15 16:32:27 +02:00
|
|
|
font-size: 100%;
|
2023-06-19 01:37:41 +02:00
|
|
|
margin: .8em 0.5em 0 1.2em;
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#main p {
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin-top: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main img { margin: .2em }
|
|
|
|
|
|
|
|
/* === List === */
|
|
|
|
#main ul {
|
|
|
|
list-style-type: disc;
|
|
|
|
padding: 0 0 0 1.6em
|
|
|
|
}
|
|
|
|
|
|
|
|
ol li, ul li { padding-bottom: 0.9em }
|
|
|
|
|
|
|
|
#main ol {
|
|
|
|
list-style-position: inside;
|
|
|
|
padding: 0 1.6em 0 1.6em
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ===== COMMENTS ===== */
|
|
|
|
#comments li {
|
|
|
|
margin: 0 0 1.5em 0;
|
|
|
|
padding: 5px;
|
2023-06-15 21:48:21 +02:00
|
|
|
/*border-top: 2px solid #6699FF;
|
|
|
|
border-bottom: 2px solid #6699FF;*/
|
|
|
|
border-top: 2px solid #f6b26b;
|
|
|
|
border-bottom: 2px solid #f6b26b;
|
2023-06-15 16:32:27 +02:00
|
|
|
background: #2D2D2D;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentform fieldset p { margin: 0 0 .5em 0 }
|
|
|
|
#commentform textarea { background-color: #999999; }
|
|
|
|
#commentform textarea:hover { background-color: #777777; }
|
|
|
|
#comments p { padding-left: 20px }
|
|
|
|
#comments li.comment-admin strong.comment-name { font-size:160% }
|
|
|
|
|
|
|
|
#comments li.comment-admin {
|
2023-06-15 22:23:51 +02:00
|
|
|
/*background-color: #DAAA55;*/
|
|
|
|
background-color: #393939;
|
|
|
|
/*color: black;*/
|
2023-06-15 16:32:27 +02:00
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* === Class of main block === */
|
|
|
|
.date, p.date {
|
|
|
|
font-size: 11px;
|
|
|
|
margin: 3px 0 3px 0;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
font-weight: normal;
|
|
|
|
border-bottom: 2px solid #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
margin: 0 0 1.5em 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden; /* floating images fix */
|
|
|
|
height:1%; /* i.e. hack*/
|
|
|
|
}
|
|
|
|
|
2023-06-17 01:54:36 +02:00
|
|
|
.entry p { font-size: 16px }
|
2023-06-15 16:32:27 +02:00
|
|
|
|
2023-06-20 02:15:41 +02:00
|
|
|
.entry-title {
|
|
|
|
/*color: #26a269;*/
|
|
|
|
/* ubuntu color background term color: #380c2a; */
|
|
|
|
color: #daaa55;
|
|
|
|
}
|
|
|
|
|
2023-06-15 16:32:27 +02:00
|
|
|
#main .entrytitle {
|
|
|
|
font-family: Candara, 'Cataneo BT', 'book antiqua', georgia, garamond, times, 'times new roman';
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-footer a { color: #A29D7D }
|
|
|
|
.entry-footer a:hover { color: #4B4B4B }
|
|
|
|
|
|
|
|
.entry-footer {
|
|
|
|
text-align: right;
|
|
|
|
font-family: 'Lucida Grande', 'Trebuchet MS', arial, Helvetica, sans-serif;
|
|
|
|
font-size: 0.9em;
|
|
|
|
margin: 2em 0 .5em 0;
|
|
|
|
margin-left: 58%;
|
|
|
|
border-top: 2px solid #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.admincontrols { /* [edit] and [delete] */
|
|
|
|
float: right;
|
|
|
|
font-size: 80%
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonbar { text-align: center }
|
|
|
|
|
|
|
|
.buttonbar input {
|
|
|
|
text-align: center;
|
|
|
|
margin: .1em .5em;
|
|
|
|
padding: 0 1em
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation { /* next entries & previous entries link */
|
|
|
|
font-size: 80%;
|
|
|
|
margin-bottom: 5em
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ===== FOOTER ===== */
|
|
|
|
#footer {
|
|
|
|
text-align: center;
|
2023-06-19 01:37:41 +02:00
|
|
|
/* background: #2D2D2D;*/
|
2023-06-19 02:02:10 +02:00
|
|
|
/* background-color: rgba(0, 0, 0, 0.2);*/
|
|
|
|
background-image: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.2));
|
2023-06-19 01:37:41 +02:00
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 15px;
|
|
|
|
border-bottom-left-radius: 15px;
|
2023-06-15 16:32:27 +02:00
|
|
|
clear: both;
|
|
|
|
font-size: 80%;
|
|
|
|
padding: 8px;
|
2023-06-19 01:37:41 +02:00
|
|
|
margin: 0px 5px 5px 5px;
|
2023-06-15 22:04:04 +02:00
|
|
|
/*border-top: #315A94 2px solid*/
|
2023-06-19 01:37:41 +02:00
|
|
|
/*border-top: #393939 2px solid*/
|
2023-06-15 16:32:27 +02:00
|
|
|
}
|