<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(//fonts.googleapis.com/css?family=Merriweather);

.glow {
	background:yellow;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	border: 1px solid #ffa853;
	border-radius: 5px;
	color: black;
	padding: 5px 10px;
	outline: none;
}

.glow:focus { 
    outline: none;
    border-color: #ffa853;
    box-shadow: 0 0 10px #ffa853;
}


.hexagon:hover {
  background:#FFFFFF;
  cursor:move;
}

a:link {
    text-decoration: none;
}

.hexagon:active {
  background-color:#FFF;
  z-index: 110;
}


#iconsWrapper
{
z-index:9999;
position:absolute;
}

#edit, #trashCan
{
height:20px;
width:20px;
position:relative;
top:82px;
left:50px;
}


#overlay
{
position:absolute;
top:0px;left:0px;
width:100%;
height:100%;
z-index:-1;
background:yellow;	
}

.hexagon {
  position: absolute;
  display: inline-block;
  /* left/right margin approx. 25% of .hexagon width + spacing */
  margin: 1px 18px;
  background-color: #6699FF;
  text-align: center;
   z-index: 999;
}

.zoomOut
{
    -webkit-transform: scale(1); 
    -ms-transform: scale(1); 
    -moz-transform: scale(1);
    transform: scale(1);
}


.zoomIn
{
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);   
    -moz-transform: scale(1.5);
    transform: scale(1.5);
}







body
{background:yellow}

bodyBAD{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#options
{
position:absolute;bottom:0px;left:0px;width:100%;background:yellow;color:black;padding:5px;	font-size:larger;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: Merriweather, Georgia, serif;
  font-size: 62.5%;
}
body {
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 95%);
  border-top: 0px solid hsl(220, 50%, 75%);
  max-width: 920px;
  margin: 0 auto;
  bottom: 0;
  top: 0;
}


.hexagon, .hexagon::before, .hexagon::after {
  /* easy way: height is width * 1.732
  actual formula is 2*(width/(2*Math.tan(Math.PI/6)))
  remove border-radius for straight edges on hexagons */
  width: 67px;
  height: 116px;
  /*border-radius: 20%/5%;*/
  
  
}
.hexagon::before {
  background-color: inherit;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.hexagon::after {
  background-color: inherit;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.hexagon:nth-child(even) {
  /* top approx. 50% of .hexagon height + spacing */
  top: 59px;
}



.hexagontent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 140%;
  font-size: 1rem;
  line-height: 1.2;
  z-index: 1;
}

.honeycomb {
  margin: 0 auto;
  text-align: center;
  display:none;
}

p
{
font-size:large;	
}
.item p{font-size:larger}

h1{font-size:3em}
h2{font-size:2.5em}
h3{font-size:2em}</pre></body></html>