First
This commit is contained in:
150
style.css
Normal file
150
style.css
Normal file
@ -0,0 +1,150 @@
|
||||
/*
|
||||
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
|
||||
* @author Francois <webmestre@parlenet.org>
|
||||
*/
|
||||
|
||||
/* ==================== */
|
||||
body {
|
||||
counter-reset: glossary;
|
||||
}
|
||||
|
||||
div.glossary table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
div.glossary table tr {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.glossary table tr.title {
|
||||
background-color: #DDF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.glossary table tr.odd {
|
||||
}
|
||||
|
||||
div.glossary table tr.even {
|
||||
background-color: #DDD;
|
||||
}
|
||||
|
||||
div.glossary table th,
|
||||
div.glossary table td {
|
||||
margin: 2px 4px;
|
||||
padding: 2px 4px;
|
||||
}
|
||||
|
||||
div.glossary table input.text {
|
||||
width: 20em;
|
||||
}
|
||||
|
||||
span.glossaryWord,
|
||||
span.glossaryWord a.wikilink1:visited,
|
||||
span.glossaryWord a.wikilink1:link {
|
||||
color: #FE0000 !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.glossaryTranslate,
|
||||
span.glossaryTranslate a.wikilink1:visited,
|
||||
span.glossaryTranslate a.wikilink1:link {
|
||||
color: #004C9A !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.glossary table th {
|
||||
counter-reset: ch1;
|
||||
}
|
||||
|
||||
div.glossary table td.count:before {
|
||||
counter-increment: glossary;
|
||||
content: counter(glossary) " ";
|
||||
}
|
||||
|
||||
div.glossary table td.count {
|
||||
color: #BBB;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.glossary table td.word,
|
||||
div.glossary table td.word a:visited,
|
||||
div.glossary table td.word a:link {
|
||||
color: #FE0000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.glossary table td.translate,
|
||||
div.glossary table td.translate a:visited,
|
||||
div.glossary table td.translate a:link {
|
||||
color: #004C9A;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.glossary table textarea.why {
|
||||
width: 50em;
|
||||
height: 6em;
|
||||
}
|
||||
|
||||
div.glossary table td.poll {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.glossary table td.right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.glossary .popup {
|
||||
position: absolute;
|
||||
top: auto;
|
||||
left: auto;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 1em;
|
||||
padding: 1em;
|
||||
overflow: visible;
|
||||
z-index: 50;
|
||||
opacity: 0.7;
|
||||
background: #EDDB31;
|
||||
color: black;
|
||||
border: 1px solid #AE090D;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.glossary .toolTip a,
|
||||
div.glossary .toolTip form {
|
||||
cursor: help;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
div.glossary .toolTip a span,
|
||||
div.glossary .toolTip form span {
|
||||
position: absolute;
|
||||
z-index: 50;
|
||||
top: -2000em;
|
||||
left: -2000em;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
opacity: 0.8;
|
||||
border: 1px solid #AE090D;
|
||||
background-color: #EDDB31;
|
||||
color: #AE090D;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
div.glossary .toolTip a:hover span,
|
||||
div.glossary .toolTip form:hover span {
|
||||
top: auto;
|
||||
left: auto;
|
||||
left: auto;
|
||||
width: auto;
|
||||
height: auto;
|
||||
overflow: visible;
|
||||
margin-top: 2em;
|
||||
margin-left: 0em;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
/* ==================== */
|
Reference in New Issue
Block a user