AppRTC: using a footer element instead of div#footer in CSS.
R=dutton@google.com Review URL: https://webrtc-codereview.appspot.com/2200004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4724 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
d4d59ac871
commit
a80ee74f69
@ -1,5 +1,5 @@
|
|||||||
a:link { color: #ffffff; }
|
a:link { color: #FFFFFF; }
|
||||||
a:visited {color: #ffffff; }
|
a:visited {color: #FFFFFF; }
|
||||||
html, body {
|
html, body {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -9,6 +9,17 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 28px;
|
||||||
|
background-color: #3F3F3F;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 13px; font-weight: bold;
|
||||||
|
line-height: 28px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
#container {
|
#container {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -65,17 +76,6 @@ body {
|
|||||||
-webkit-transition-property: opacity;
|
-webkit-transition-property: opacity;
|
||||||
-webkit-transition-duration: 2s;
|
-webkit-transition-duration: 2s;
|
||||||
}
|
}
|
||||||
#footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 28px;
|
|
||||||
background-color: #3F3F3F;
|
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
font-size: 13px; font-weight: bold;
|
|
||||||
line-height: 28px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
#hangup {
|
#hangup {
|
||||||
font-size: 13px; font-weight: bold;
|
font-size: 13px; font-weight: bold;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
@ -86,7 +86,6 @@ body {
|
|||||||
border-color: #FFFFFF;
|
border-color: #FFFFFF;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#infoDiv {
|
#infoDiv {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
<footer id="footer">
|
<footer id="status">
|
||||||
</footer>
|
</footer>
|
||||||
<div id="infoDiv"></div>
|
<div id="infoDiv"></div>
|
||||||
</html>
|
</html>
|
||||||
|
@ -165,7 +165,7 @@ function maybeStart() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setStatus(state) {
|
function setStatus(state) {
|
||||||
document.getElementById('footer').innerHTML = state;
|
document.getElementById('status').innerHTML = state;
|
||||||
}
|
}
|
||||||
|
|
||||||
function doCall() {
|
function doCall() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user