Subversion Repositories wimsdev

Rev

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