MediaWiki:Common.css: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
/* sub-menu box */
/* sub-menu box */
#shbox {
#shbox {
background: rgb(255,255,238); /* fallback color */
background-color: rgba(255,255,238,0.7);  
background-color: rgba(255,255,238,0.7);  
width:98%;
width:98%;
border-width:1px;
border-width:1px;
Line 20: Line 22:
/* transparency for Conqueror, IE and Safari */
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
filter:alpha(opacity=70);
opacity:0.7;
}
}


/* styled table of content */
/* styled table of content */
#toc {
#toc {
// opacity: 0.8;
background: rgb(255,255,238); /* fallback color */
background-color: rgba(255,255,238,0.7);  
 
width:80%;
width:80%;
border: 1px solid #dddddd;
border: 1px solid #dddddd;
background-color: rgba(255,255,238,0.7);
 
-webkit-box-shadow: 6px 6px 6px #c0c0c0;
-webkit-box-shadow: 6px 6px 6px #c0c0c0;
-moz-box-shadow: 6px 6px 6px #c0c0c0;
-moz-box-shadow: 6px 6px 6px #c0c0c0;
Line 34: Line 37:
/* transparency for Conqueror, IE and Safari */
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
filter:alpha(opacity=70);
opacity:0.7;
}
}


Line 40: Line 42:
/* styled pre areas  */
/* styled pre areas  */
pre {  
pre {  
background: rgb(255,255,238); /* fallback color */
background-color: rgba(255,255,238,0.7);  
background-color: rgba(255,255,238,0.7);  
border: dashed;
border: dashed;
border: 1px dashed #aaaaaa;
border: 1px dashed #aaaaaa;
Line 51: Line 55:
/* transparency for Conqueror, IE and Safari */
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
filter:alpha(opacity=70);
opacity:0.7;
}
}


Line 94: Line 97:


.styled_table tr {
.styled_table tr {
background: rgb(255,255,238); /* fallback color */
background-color: rgba(238,238,238,0.7);  
background-color: rgba(238,238,238,0.7);  
border-bottom: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
/* transparency for Conqueror, IE and Safari */
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
filter:alpha(opacity=70);
opacity:0.7;
}
}



Revision as of 12:22, 30 April 2010

 /** <pre><nowiki> */

/* css3 */

/* sub-menu box */
#shbox {
	background: rgb(255,255,238); /* fallback color */
	background-color: rgba(255,255,238,0.7); 

	width:98%;
	border-width:1px;
	border-color:lightgrey;
	padding: 5px 5px 5px 10px;
	border-style:solid;
	font-size: 0.9em;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 6px 6px 6px #c0c0c0;
	-moz-box-shadow: 6px 6px 6px #c0c0c0;
	box-shadow: 6px 6px 6px #c0c0c0;
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
}

/* styled table of content */
#toc {
	background: rgb(255,255,238); /* fallback color */
	background-color: rgba(255,255,238,0.7); 

	 width:80%;
	 border: 1px solid #dddddd;

	 -webkit-box-shadow: 6px 6px 6px #c0c0c0;
	 -moz-box-shadow: 6px 6px 6px #c0c0c0;
	 box-shadow: 6px 6px 6px #c0c0c0;
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
}


/* styled pre areas  */
pre { 
	background: rgb(255,255,238); /* fallback color */
	background-color: rgba(255,255,238,0.7); 

	 border: dashed;
	 border: 1px dashed #aaaaaa;
	 -webkit-border-radius: 5px;
	 -moz-border-radius: 5px;
	 border-radius: 5px;
	 -webkit-box-shadow: 6px 6px 6px #c0c0c0;
	 -moz-box-shadow: 6px 6px 6px #c0c0c0;
	 box-shadow: 6px 6px 6px #c0c0c0;
/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
}




.bullets {
padding: 10px;
}

ul.bullets li {
margin-left: 30px;
}

#column-one {
 position: absolute;
 top: 0;
 left: 0;
 z-index: 4;
}

#p-personal {
display: fixed;
top: 0px;
left: 600px;
}

/* Mārim tabulas */

.styled_table {
	width: 95%;
	margin-left: 5%;
	border-collapse: collapse;
	-webkit-box-shadow: 6px 6px 6px #c0c0c0;
	-moz-box-shadow: 6px 6px 6px #c0c0c0;
	box-shadow: 6px 6px 6px #c0c0c0;
}

.styled_table th {
	background-color: #cccccc;
}

.styled_table tr {
	background: rgb(255,255,238); /* fallback color */
	background-color: rgba(238,238,238,0.7); 

	border-bottom: 2px solid #ffffff;

/* transparency for Conqueror, IE and Safari */
filter:alpha(opacity=70);
}

.styled_table td {
	border-bottom: 2px solid #FFF;
	vertical-align: top;
	padding: 5px;
}

.styled_table td+td {
	border-left: 2px solid #FFF;
}



 /** </nowiki></pre> */