Rev 13292 | Rev 14091 | 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; |
||
13991 | obado | 17 | /*background-color: #f9fdf9;*/ |
18 | background-color: #FFF; |
||
7888 | obado | 19 | } |
20 | |||
21 | pre{ |
||
10207 | bpr | 22 | /* pre peut afficher du texte multi-lignes */ |
7888 | obado | 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 | |||
9726 | obado | 36 | textarea#wims_deposit { |
6236 | bpr | 37 | width:80%; |
38 | min-width:50em; |
||
39 | min-height:30em; |
||
40 | } |
||
7888 | obado | 41 | |
9635 | obado | 42 | /* reference to filename (in modtool file list)*/ |
6236 | bpr | 43 | .wims_fname { |
44 | font-family: monospace, "Courier New"; |
||
7075 | obado | 45 | color :#600; |
6236 | bpr | 46 | font-weight:bold; |
47 | } |
||
7671 | bpr | 48 | /* reference to parameters */ |
6236 | bpr | 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*/ |
||
7075 | obado | 58 | /*.wims_address {}*/ |
59 | |||
6236 | bpr | 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 | } |
||
9635 | obado | 69 | |
70 | /* WIMS_messages */ |
||
71 | .wims_msg{ |
||
10262 | obado | 72 | /*font-weight: bold;*/ |
12300 | obado | 73 | padding: .3rem; |
13292 | obado | 74 | border: 1px solid #BCBCBC; |
6236 | bpr | 75 | } |
12300 | obado | 76 | div.wims_msg{ |
77 | margin: .5rem auto 1rem auto; |
||
78 | } |
||
9635 | obado | 79 | /* WIMS_messages (type success) */ |
10262 | obado | 80 | .wims_msg.success{background-color: #e1faea;} |
9635 | obado | 81 | /* WIMS_messages (type alert) */ |
10262 | obado | 82 | .wims_msg.alert{background-color: #fce6e2;} |
9635 | obado | 83 | /* WIMS_messages (type warning) */ |
10262 | obado | 84 | .wims_msg.warning{background-color: #fff3d9;} |
9635 | obado | 85 | /* WIMS_messages (type info) */ |
10262 | obado | 86 | .wims_msg.info{background-color: #def0fc;} |
12300 | obado | 87 | /* WIMS_messages (type help) */ |
88 | .wims_msg.help{background-color: #F6F6F6;} |
||
10262 | obado | 89 | /* include variables in WIMS_messages |
90 | .wims_msg .tt{color: black;}*/ |
||
12300 | obado | 91 | |
9635 | obado | 92 | /* alert msg (WIMS_messages, old way (but still used in several modules) */ |
93 | .wims_alertmsg{ |
||
9628 | guerimand | 94 | margin:auto; |
9635 | obado | 95 | color: #A52A2A; |
9628 | guerimand | 96 | font-weight: bold; |
97 | padding: 10px; |
||
9635 | obado | 98 | border: solid 1px; |
9628 | guerimand | 99 | } |
9635 | obado | 100 | |
6635 | bpr | 101 | /* reference sur un label */ |
102 | .wims_label { |
||
103 | font-family: monospace, "Courier New"; |
||
12904 | obado | 104 | padding: 1px 3px; |
7671 | bpr | 105 | border:solid 1px ; |
6635 | bpr | 106 | } |
12904 | obado | 107 | .wims_label.open,.wims_label.success{ |
13019 | bpr | 108 | color:green; |
12904 | obado | 109 | } |
7075 | obado | 110 | |
6236 | bpr | 111 | /* words as login*/ |
112 | .wims_login { |
||
113 | color:blue; |
||
114 | font-weight:bold; |
||
6635 | bpr | 115 | } |