69 lines
1.7 KiB
CSS
69 lines
1.7 KiB
CSS
/**
|
|
* Basic CSS for server sent events demo.
|
|
*/
|
|
|
|
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, font, img, kbd, q, s, samp,
|
|
small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
|
|
margin: 0; padding: 0; border: 0; outline: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; }
|
|
:focus { outline: 0; }
|
|
body { line-height: 1; }
|
|
ol, ul { list-style: none; }
|
|
table { border-collapse: separate; border-spacing: 0; }
|
|
caption, th, td { text-align: left; font-weight: normal; }
|
|
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
|
|
blockquote, q { quotes: "" ""; }
|
|
|
|
html {
|
|
color: #333;
|
|
font: normal 22px/26px helvetica, arial, sans-serif;
|
|
padding: 0px;
|
|
background: #fff;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
body {
|
|
overflow: hidden !important;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
h1 {
|
|
background-color: #01acca;
|
|
padding: 20px 0;
|
|
text-indent: 20px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
font-size: 1.8em;
|
|
}
|
|
|
|
h2 { font-size: 1.5em;background-color: #e9e9e9; border-bottom: 1px solid #c9c9c9; margin: 0; padding: 15px; }
|
|
|
|
a, a:visited { color: #01acca; font-weight: bold; text-decoration: none; }
|
|
|
|
ul { margin: 10px 0 0 45px; list-style-type: disc; }
|
|
|
|
li {
|
|
font-size: 1.3em;
|
|
line-height: 1.3em;
|
|
padding: 10px 0;
|
|
color: #555;
|
|
}
|
|
|
|
.slide {
|
|
display: none;
|
|
border: 1px solid #c9c9c9;
|
|
background-color: #f9f9f9;
|
|
margin: 30px auto;
|
|
padding: 0;
|
|
}
|
|
|
|
pre {
|
|
background: #333;
|
|
color: #f9f9f9;
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
font-family: inconsolata, monospace;
|
|
width: 92%;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
}
|