update ss css

This commit is contained in:
milad 2019-11-12 14:40:23 -08:00
parent 49f972714c
commit 4962e26664
3 changed files with 12 additions and 8 deletions

View file

@ -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>

View file

@ -18,7 +18,7 @@ if (osType == "Darwin" || osType == "Linux") {
height = 660;
} else if (osType == "Windows_NT") {
width = 973;
height = 735;
height = 740;
}
if (!gotTheLock) {

View file

@ -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);
}