/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: middle;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
text-align: center;
position: initial;
height: 100%;
width: 100%;
font-size: 1em;
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*document element*/
.wrapper {
position: absolute;
width: 100%;
height: 100%;
}
.header {
display: inline-block;
text-align: center;
background-color:rgba(255, 166, 0, 0.74902);
position: relative;
width: 100%;
height: auto;
border-bottom: 5px solid rgb(146, 92, 255);
}
.header h1 {
color:rgb(0, 0, 0);
text-shadow:rgb(252, 212, 212) 1px 1px 1px;
font-weight: bold;
font-size: 2.5em;
}
.container {
background-color: rgb(163, 255, 0);
background-image: url(HTML5.jpg);
background-position-y: 40%;
background-size: 100% auto;
overflow: hidden;
position: relative;
height: 100%;
width: 100%;
}
.button {
text-decoration: none;
cursor: pointer;
font-weight: bold;
font-family: MyriadProRegular, Verdana,sans-serif;
line-height: 1em;
font-size: 1em;
position: relative;
background-color: rgb(255, 213, 25);
border-color: rgb(227, 132, 0);
border-style: solid;
border-width: 2px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
padding: 5px 5px 5px 5px;
margin: 2px;
float: right;
}
.button:hover {
background-color: rgb(251, 255, 25);
}
.button:active {
background-color: rgb(255, 255, 255);
}
.documentWrapper{
font-weight: bold;
z-index: 100000;
position: absolute;
width: 80%;
height: 80%;
overflow: hidden;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
background-color: orange;
border: 2px solid rgb(184, 144, 0);
}
.overlay{
display: none;
z-index: 99999;
position: absolute;
width: 100%;
opacity: 0.8;
height: 100%;
background: black;
}
.close{
cursor: pointer;
position: absolute;
top: 0;
right: 0;
}
.docHeader{
vertical-align: middle;
height: 10%;
margin: 0;
padding: 0;
border: 0;
font: inherit;
background-color: #FFA500;
font-size: 2.5em;
}
.docBody{
overflow: auto;
position: relative;
width: 100%;
height: 90%;
}
.documentWrapper textarea{
width: 100%;
height: 50%;
text-align: left;
}
|