mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 21:22:00 +02:00
update ss css
This commit is contained in:
parent
49f972714c
commit
4962e26664
3 changed files with 12 additions and 8 deletions
|
@ -41,13 +41,13 @@
|
|||
</p>
|
||||
</div>
|
||||
<div id="button_selection">
|
||||
<div id="yes" class="button_confirmation" onClick="screenConfirmed(true)">
|
||||
Yes, share this content
|
||||
<div id="yes" class="button_confirmation grey_background" onClick="screenConfirmed(true)">
|
||||
YES, SHARE THIS CONTENT
|
||||
</div>
|
||||
<div id="no" class="button_confirmation" onClick="screenConfirmed(false)">
|
||||
No, don't share this content
|
||||
</div>
|
||||
</div> button_selection
|
||||
</div>
|
||||
</div> <!-- confirmation screen -->
|
||||
<script src="app.js"></script>
|
||||
<script src="https://static.opentok.com/v2/js/opentok.min.js"></script>
|
||||
|
|
|
@ -18,7 +18,7 @@ if (osType == "Darwin" || osType == "Linux") {
|
|||
height = 660;
|
||||
} else if (osType == "Windows_NT") {
|
||||
width = 973;
|
||||
height = 735;
|
||||
height = 740;
|
||||
}
|
||||
|
||||
if (!gotTheLock) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
body {
|
||||
background: black;
|
||||
background-color: black;
|
||||
box-sizing: border-box;
|
||||
/* display: -webkit-flex; */
|
||||
/* -webkit-justify-content: center; */
|
||||
|
@ -41,14 +41,18 @@ body {
|
|||
.button_confirmation {
|
||||
margin: 4px;
|
||||
cursor: pointer;
|
||||
width: 250px;
|
||||
height: 75px;
|
||||
line-height: 75px;
|
||||
width: 300px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
color: white
|
||||
}
|
||||
|
||||
.grey_background {
|
||||
background-color: #191919;
|
||||
}
|
||||
|
||||
#no {
|
||||
color: rgba(1, 152, 203,0.7);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue