analyseWriter/src/fenetres/baliseStyle.java

35 lines
2.6 KiB
Java
Raw Normal View History

2022-06-19 21:01:30 +02:00
package fenetres;
2022-06-04 15:43:08 +02:00
public class baliseStyle {
public baliseStyle() {
}
public static String balise() {
return "<style type=\"text/css\">"
2022-06-09 09:13:46 +02:00
+ "h1 {margin-bottom: 0.25cm;font-size: 20pt;font-family:\"Arial\";text-align:center;font-weight: bold;}"
2022-06-06 09:50:45 +02:00
+ "h2 {margin-bottom: 0.25cm;font-size: 16pt;font-family:\"Arial\";text-align:center;font-weight: bold;}"
2022-06-09 09:13:46 +02:00
+ "h3 {margin-bottom: 0.25cm;font-size: 16pt;font-family:\"Arial\";text-align:left;font-weight: bold;}"
2022-06-04 15:43:08 +02:00
+ "h4 {text-align:left;font-family: \"Arial\"; font-size: 16pt; font-weight: bold; line-height: 110%;}"
2022-06-09 09:13:46 +02:00
+ "p {font-family:\"Arial\";font-size: 14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: transparent; margin-left: 0cm; white-space: pre;}"
2022-06-04 15:43:08 +02:00
+ "hr { display: block; margin-top: 0.5em; margin-bottom: 8em; margin-left: 2em; margin-right: 2em; border-style: inset; border-width: 4px;}"
+ "spanpablo { float: right; width: 8em; font-size: 250%; font-family: algerian, courier; line-height: 80%; margin-right: 1%; color: red; text-align: center}"
2022-06-11 12:10:28 +02:00
+ ".p1{color:blue;font-family:\"Arial\";font-size: 14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: transparent; margin-left: 0cm; white-space: pre;}"
+ "bleu{color:blue;font-family:\"Arial\";font-size: 14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: #AAAAAA; margin-left: 0cm; white-space: pre;}"
+ ".city { background-color: transparent;color: #008B8B;padding: 10px;}"
+ ".rouge { background-color: #8B0000;color: white;padding: 10px;}"
2022-06-04 15:43:08 +02:00
+ "li.p2{color:green;font-family:\"Arial\";font-size: 14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: transparent; margin-left: 0cm; white-space: pre;}"
2022-06-05 21:06:41 +02:00
+ "li.p4{color:#FF8C00;font-family:\"Arial\";font-size: 14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: transparent; margin-left: 0cm; white-space: pre;}"
2022-06-04 15:43:08 +02:00
+ "li.p3{color:red;font-family:\"Arial\";font-size: 14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: transparent; margin-left: 0cm; white-space: pre;}"
+ "li.p5{color:#55BB11;font-family:\"Arial\";font-size: 16pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 0%; background: transparent; margin-left: 0cm; white-space: pre;}"
2022-06-04 15:43:08 +02:00
+ "p.p4{margin-left: 0px; margin-bottom: 0cm; margin-top: 4px; line-height: 115%}"
2022-06-06 18:59:42 +02:00
+ "p.p5 {color: navy;text-indent: 30px;}"
2022-06-05 21:06:41 +02:00
+ ".center { display: block;margin-left: auto;margin-right: auto;width: 50%}"
+ ".tabulation { display: inline-block; margin-left: 40px;} "
2022-06-04 15:43:08 +02:00
+ "</style>";
}
}