Subversion Repositories wimsdev

Rev

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

Rev Author Line No. Line
12261 bpr 1
/* WORDS in code in all texts*/
7888 obado 2
 
3
code, pre{
12300 obado 4
  border: 1px solid #cacaca;
7888 obado 5
  border-radius: 2px;
13292 obado 6
  box-shadow: inset 0 0 .5em rgba(128,128,128,.5);
6236 bpr 7
}
7888 obado 8
 
9
code{
11168 bpr 10
  /* <code> est habituellement utilisé pour du code "inline",
7888 obado 11
     mais avec "inline-block", on peut aussi l'utiliser en multi-lignes. */
12
  display:inline-block;
13292 obado 13
  padding: .5em;
12300 obado 14
  font-family: Consolas, "Liberation Mono", Courier, monospace;
15
  font-weight: normal;
16
  color: #0a0a0a;
13292 obado 17
  background-color: #f9fdf9;
7888 obado 18
}
19
 
20
pre{
10207 bpr 21
  /* pre peut afficher du texte multi-lignes */
7888 obado 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
 
9726 obado 35
textarea#wims_deposit {
6236 bpr 36
  width:80%;
37
  min-width:50em;
38
  min-height:30em;
39
}
7888 obado 40
 
9635 obado 41
/* reference to filename (in modtool file list)*/
6236 bpr 42
.wims_fname {
43
  font-family: monospace, "Courier New";
7075 obado 44
  color :#600;
6236 bpr 45
  font-weight:bold;
46
}
7671 bpr 47
/* reference to parameters */
6236 bpr 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*/
7075 obado 57
/*.wims_address {}*/
58
 
6236 bpr 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
}
9635 obado 68
 
69
/* WIMS_messages */
70
.wims_msg{
10262 obado 71
   /*font-weight: bold;*/
12300 obado 72
   padding: .3rem;
13292 obado 73
   border: 1px solid #BCBCBC;
6236 bpr 74
}
12300 obado 75
div.wims_msg{
76
  margin: .5rem auto 1rem auto;
77
}
9635 obado 78
/* WIMS_messages (type success) */
10262 obado 79
.wims_msg.success{background-color: #e1faea;}
9635 obado 80
/* WIMS_messages (type alert) */
10262 obado 81
.wims_msg.alert{background-color: #fce6e2;}
9635 obado 82
/* WIMS_messages (type warning) */
10262 obado 83
.wims_msg.warning{background-color: #fff3d9;}
9635 obado 84
/* WIMS_messages (type info) */
10262 obado 85
.wims_msg.info{background-color: #def0fc;}
12300 obado 86
/* WIMS_messages (type help) */
87
.wims_msg.help{background-color: #F6F6F6;}
10262 obado 88
/* include variables in WIMS_messages
89
.wims_msg .tt{color: black;}*/
12300 obado 90
 
9635 obado 91
/* alert msg (WIMS_messages, old way (but still used in several modules) */
92
.wims_alertmsg{
9628 guerimand 93
   margin:auto;
9635 obado 94
   color: #A52A2A;
9628 guerimand 95
   font-weight: bold;
96
   padding: 10px;
9635 obado 97
   border: solid 1px;
9628 guerimand 98
}
9635 obado 99
 
6635 bpr 100
/* reference sur un label */
101
.wims_label {
102
   font-family: monospace, "Courier New";
12904 obado 103
   padding: 1px 3px;
7671 bpr 104
   border:solid 1px ;
6635 bpr 105
}
12904 obado 106
.wims_label.open,.wims_label.success{
13019 bpr 107
  color:green;
12904 obado 108
}
7075 obado 109
 
6236 bpr 110
/* words as login*/
111
.wims_login {
112
   color:blue;
113
   font-weight:bold;
6635 bpr 114
}