Subversion Repositories wimsdev

Rev

Rev 13991 | Rev 14631 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* WORDS in code in all texts*/
  2.  
  3. code, pre{
  4.   border: 1px solid #cacaca;
  5.   border-radius: 2px;
  6.   box-shadow: inset 0 0 .5em rgba(128,128,128,.5);
  7. }
  8.  
  9. code{
  10.   /* <code> est habituellement utilisé pour du code "inline",
  11.      mais avec "inline-block", on peut aussi l'utiliser en multi-lignes. */
  12.   display:inline-block;
  13.   padding: .5em;
  14.   font-family: Consolas, "Liberation Mono", Courier, monospace;
  15.   font-weight: normal;
  16.   color: #0a0a0a;
  17.   /*background-color: #f9fdf9;*/
  18.   background-color: #FFF;
  19. }
  20.  
  21. pre{
  22.   /* pre peut afficher du texte multi-lignes */
  23.    /*border-left-width: 4px;
  24.    background-color:rgb(128,255,128);
  25.    background-color:rgba(0,128,0,0.1);
  26.    font-family: monospace, "Courier New";
  27.    border-left-style: ridge;
  28.    line-height: 1.1em;
  29.    margin: 1em;*/
  30.    /* white-space lets display this block without scroll bars */
  31.    /*white-space: pre-wrap;*/
  32.    overflow: auto;
  33.    padding: 1em;
  34. }
  35.  
  36. textarea#wims_deposit {
  37.   width:80%;
  38.   min-width:50em;
  39.   min-height:30em;
  40. }
  41.  
  42. /* reference to filename (in modtool file list)*/
  43. .wims_fname {
  44.   font-family: monospace, "Courier New";
  45.   color :#600;
  46.   font-weight:bold;
  47. }
  48. /* reference to parameters */
  49. .wims_parm{background-color : #ffffe5;}
  50.  
  51. /* mots de code */
  52. .wims_code_words {color:blue;}
  53.  
  54. /* variables in help for example*/
  55. .wims_code_variable {color:navy;}
  56.  
  57. /*address as email adress, but also adresse of a file*/
  58. /*.wims_address {}*/
  59.  
  60. /* title of modules in a texte */
  61. .wims_mod_title {
  62.   color:blue;
  63.   font-style: italic;
  64. }
  65. /* descriptions of modules in help or text */
  66. .wims_mod_desc {
  67.   font-style: italic;
  68. }
  69.  
  70. /* WIMS_messages */
  71. .wims_msg{
  72.    /*font-weight: bold;*/
  73.    padding: .3rem;
  74.    border: 1px solid #BCBCBC;
  75. }
  76. div.wims_msg{
  77.   margin: .5rem auto 1rem auto;
  78. }
  79. /* WIMS_messages (type success) */
  80. .wims_msg.success{background-color: #e1faea;}
  81. /* WIMS_messages (type alert) */
  82. .wims_msg.alert,.wims_msg.fail{background-color: #fce6e2;}
  83. /* WIMS_messages (type warning) */
  84. .wims_msg.warning{background-color: #fff3d9;}
  85. /* WIMS_messages (type info) */
  86. .wims_msg.info{background-color: #def0fc;}
  87. /* WIMS_messages (type help) */
  88. .wims_msg.help{background-color: #F6F6F6;}
  89. /* include variables in WIMS_messages
  90. .wims_msg .tt{color: black;}*/
  91.  
  92. /* alert msg (WIMS_messages, old way (but still used in several modules) */
  93. .wims_alertmsg{
  94.    margin:auto;
  95.    color: #A52A2A;
  96.    font-weight: bold;
  97.    padding: 10px;
  98.    border: solid 1px;
  99. }
  100.  
  101. /* reference sur un label */
  102. .wims_label {
  103.    font-family: monospace, "Courier New";
  104.    padding: 1px 3px;
  105.    border:solid 1px ;
  106. }
  107. .wims_label.open,.wims_label.success{
  108.   color:green;
  109. }
  110.  
  111. /* words as login*/
  112. .wims_login {
  113.    color:blue;
  114.    font-weight:bold;
  115. }
  116.