n@921: /* structure.css n@921: * Define the structure for classes and objects in HTML n@921: */ n@921: n@921: div.title { n@921: width: 100%; n@921: height: 50px; n@921: margin-bottom: 10px; n@921: font-size: 2em; n@921: } n@921: n@921: div.indicator-box { n@921: position: absolute; n@921: left: 150px; n@921: top: 10px; n@921: width: 300px; n@921: height: 60px; n@921: padding: 20px; n@921: border-radius: 10px; n@921: background-color: rgb(100,200,200); n@921: } n@921: n@921: div.comment-div { n@921: border:#444444; n@921: border-style:solid; n@921: border-width:1px; n@921: width: 624px; n@921: float: left; n@921: margin: 5px; n@921: } n@921: n@921: div.comment-div span { n@921: margin-left: 15px; n@921: } n@921: n@921: div.popupHolder { n@921: width: 500px; n@921: height: 250px; n@921: background-color: #fff; n@921: border-radius: 10px; n@921: box-shadow: 0px 0px 50px #000; n@921: z-index: 2; n@921: } n@921: n@921: button.popupButton { n@921: /* Button for popup window n@921: */ n@921: width: 50px; n@921: height: 25px; n@921: position: absolute; n@921: left: 440px; n@921: top: 215px; n@921: border-radius: 5px; n@921: border: #444; n@921: border-width: 1px; n@921: border-style: solid; n@921: background-color: #fff; n@921: } n@921: n@921: textarea.trackComment { n@921: width: 618px; n@921: margin-right:15px; n@921: }