Change heading to use proper tag

main
sigonasr2, Sig, Sigo 3 years ago
parent ec70e680e9
commit 0f147375a0
  1. 4
      sigPlace.java
  2. 5
      sitefiles/sig.css

@ -22,8 +22,8 @@ public class sigPlace {
final static HashMap<String,String> map = new HashMap<>(Map.ofEntries( final static HashMap<String,String> map = new HashMap<>(Map.ofEntries(
new AbstractMap.SimpleEntry<>("$SITENAME", "SigPlace"), new AbstractMap.SimpleEntry<>("$SITENAME", "SigPlace"),
new AbstractMap.SimpleEntry<>("$SITE_BACKCOL", "#111"), new AbstractMap.SimpleEntry<>("$SITE_BACKCOL", "#111"),
new AbstractMap.SimpleEntry<>("$TITLE_CONTENT_START", "<div class=\"title\">"), new AbstractMap.SimpleEntry<>("$TITLE_CONTENT_START", "<h1>"),
new AbstractMap.SimpleEntry<>("$TITLE_CONTENT_END", "</div><div class=\"content\">"), new AbstractMap.SimpleEntry<>("$TITLE_CONTENT_END", "</h1><div class=\"content\">"),
new AbstractMap.SimpleEntry<>("$CONTENT_END", "</div>") new AbstractMap.SimpleEntry<>("$CONTENT_END", "</div>")
)); ));
final static HashMap<String,Path> ops = new HashMap<>(Map.ofEntries( final static HashMap<String,Path> ops = new HashMap<>(Map.ofEntries(

@ -57,9 +57,9 @@ body{
text-shadow: 0.3px 0.3px 3px #666666; text-shadow: 0.3px 0.3px 3px #666666;
} }
.contentBody .title{ .contentBody h1{
display: inline-block; display: inline-block;
font-size:x-large; font-size:3.25em;
border-bottom-style: outset; border-bottom-style: outset;
border-radius: 32px; border-radius: 32px;
background-color:$SITE_BACKCOL; background-color:$SITE_BACKCOL;
@ -67,6 +67,7 @@ body{
.contentBody .content{ .contentBody .content{
display: inline-block; display: inline-block;
font-size:1.25em;
border-radius: 12px 0px 12px 0px; border-radius: 12px 0px 12px 0px;
border-style: none outset outset none; border-style: none outset outset none;
border-color: rgb(17, 153, 17, .3); border-color: rgb(17, 153, 17, .3);

Loading…
Cancel
Save