added styling of iframe
This commit is contained in:
parent
190f2f1ed4
commit
f446266a4b
3 changed files with 87 additions and 10 deletions
|
|
@ -18,17 +18,9 @@
|
||||||
|
|
||||||
<meta http-equiv="origin-trial" data-feature="WebVR" data-expires="2017-06-12" content="Avy/Fo2QM5trR+WVHnaVz0t3LVltGxx3yvpSYSCC2oklwuDEYUEK6YdnxYv4p687MJGB61q//htZUvSIZPg93goAAABOeyJvcmlnaW4iOiJodHRwczovL3dlYi5qYW51c3ZyLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVlIiLCJleHBpcnkiOjE0OTczMTIwMDB9">
|
<meta http-equiv="origin-trial" data-feature="WebVR" data-expires="2017-06-12" content="Avy/Fo2QM5trR+WVHnaVz0t3LVltGxx3yvpSYSCC2oklwuDEYUEK6YdnxYv4p687MJGB61q//htZUvSIZPg93goAAABOeyJvcmlnaW4iOiJodHRwczovL3dlYi5qYW51c3ZyLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVlIiLCJleHBpcnkiOjE0OTczMTIwMDB9">
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta property="og:url" content="https://xrforge.isvery.ninja" />
|
||||||
<meta name="twitter:site" content="@bai0" />
|
|
||||||
<meta name="twitter:title" content="JanusWeb" />
|
|
||||||
<meta name="twitter:description" content="The World Within The Web" />
|
|
||||||
<meta name="twitter:image" content="https://janusxr.org/backgrounds/wallpapers/generic.png" />
|
|
||||||
<meta name="twitter:image:alt" content="JanusWeb" />
|
|
||||||
|
|
||||||
<meta property="og:app_id" content="1197654320349894" />
|
|
||||||
<meta property="og:url" content="https://web.janusxr.org/" />
|
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:title" content="JanusWeb" />
|
<meta property="og:title" content="XRForge" />
|
||||||
<meta property="og:description" content="The World Within The Web" />
|
<meta property="og:description" content="The World Within The Web" />
|
||||||
<meta property="og:image" content="https://janusxr.com/backgrounds/wallpapers/generic.png" />
|
<meta property="og:image" content="https://janusxr.com/backgrounds/wallpapers/generic.png" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,84 @@
|
||||||
ui-buttonbar{
|
ui-buttonbar{
|
||||||
margin:15px;
|
margin:15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark{
|
||||||
|
font-family:"Montserrat", "Open Sans Regular", sans-serif !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
janus-ui-urlbar > ui-input > input{
|
||||||
|
background: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-chat .message.selfchat .userid {
|
||||||
|
color:#AFF !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-status .indicator.connected {
|
||||||
|
background:#AFF !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-chat .chat, janus-comms-chat .message.selfchat{
|
||||||
|
color:#DDD !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.janus-ui-container{
|
||||||
|
line-height:20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-panel{
|
||||||
|
padding: 14px !important;
|
||||||
|
border-radius: 11px;
|
||||||
|
margin: 15px;
|
||||||
|
width: 33vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (height < 560px) {
|
||||||
|
janus-comms-panel{
|
||||||
|
display:none !important;
|
||||||
|
}
|
||||||
|
janus-ui-editor-button,
|
||||||
|
janus-button-voip,
|
||||||
|
janus-button-audio,
|
||||||
|
janus-ui-settings-button{
|
||||||
|
display:none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (width <= 860px) {
|
||||||
|
janus-comms-panel{
|
||||||
|
padding-bottom: 43px !important
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-chat > details > ui-input > input {
|
||||||
|
padding: 7px !important;
|
||||||
|
font-size: 15px !important;
|
||||||
|
border-radius: 0px 0px 4px 4px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
ui-list {
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-chat > details > ui-list {
|
||||||
|
border-radius: 7px 7px 0px 0px;
|
||||||
|
margin-top: 12px;
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
janus-comms-chat ui-list {
|
||||||
|
margin-bottom:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body ui-button, ui-togglebutton, ui-dropdownbutton, ui-tabcountbutton, ui-popupbutton, ui-notificationbutton {
|
||||||
|
background-image: none;
|
||||||
|
background-color:#BBB;
|
||||||
|
}
|
||||||
|
|
||||||
|
ui-panel summary {
|
||||||
|
margin: 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,10 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vc-switch{
|
||||||
|
margin-bottom: 50px; /* vconsole.min.js */
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #def;
|
background-color: #def;
|
||||||
background-image: linear-gradient(#201, #001 50%);
|
background-image: linear-gradient(#201, #001 50%);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue