Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up the CSS #151

Open
wants to merge 4 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
102 changes: 15 additions & 87 deletions support/client/lib/index.css
Expand Up @@ -8,27 +8,6 @@ body {
margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
font-family: Verdana, Arial, Helvetica, sans-serif;
}

table {
font-family: Verdana, Arial, Helvetica, sans-serif;
}

form {
margin: 2em;
}

label {
font-size: 18px;
}

input {
font-size: 18px;
padding: 5px;
}

.vwf-properties {
background-color: #DCC;
}
Expand Down Expand Up @@ -214,63 +193,6 @@ input {
width: 300px;
}

.overlay {
position:absolute;
top:30%;
width:99%;
pointer-events:none;
}

.overlay p {
padding:0px;
margin:0px;
}

.overlay a:link {
color:#888888;
}

.overlay a:visited {
color:#888888;
}

.overlay a:hover {
color:#CCCCCC;
}

.loading {
margin:auto auto;
color:#FFF;
width:600px;
height:400px;
background:#050505;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
font:18px Arial;
/*visibility: hidden;*/
}

.loadText {
}


.requirements {
margin-left: 100px;
}

.req {
font-size:14px;
position:relative;
left:20px;
}


h1, h2, h3, h4, h5, h6, body, legend, label {
text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.3);
}

.pace {
-webkit-pointer-events: none;
pointer-events: none;
Expand Down Expand Up @@ -342,12 +264,18 @@ text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.3);
}

#incompatibleBrowser {
visibility: hidden;
position: absolute;
left: 0px;
top: 0px;
width:100%;
height:100%;
text-align:center;
z-index: 1000;
}
visibility: hidden;
position: absolute;
left: 0px;
top: 0px;
width:100%;
height:100%;
text-align:center;
z-index: 1000;
}

#incompatibleBrowser .warning {
color:#3090C7;
padding-top: 20px;
display: inline-block;
}
4 changes: 1 addition & 3 deletions support/client/lib/index.html
Expand Up @@ -154,9 +154,7 @@
<div id="vwf-loading-spinner" class="pace pace-active"><div class="pace-activity"></div></div>

<div id="incompatibleBrowser">
<div>
<span style="color:#3090C7;"><br/><br/>Your browser does not support Virtual World Framework. Please review our <a href='https://virtual.wf/requirements.html'>requirements</a> for supported browser versions.</span>
</div>
<span class="warning">Your browser does not support Virtual World Framework. Please review our <a href='https://virtual.wf/requirements.html'>requirements</a> for supported browser versions.</span>
</div>
<div id="vwf-root"></div>

Expand Down
2 changes: 1 addition & 1 deletion support/client/lib/vwf/view/document.js
Expand Up @@ -58,7 +58,7 @@ define( [ "module", "vwf/view", "vwf/utility", "jquery" ], function( module, vie

// Load the file and insert it into the main page.

var container = jQuery( "body" ).append( "<div />" ).children( ":last" );
var container = jQuery( "body" ).append( "<div id='vwf-content' />" ).children( ":last" );

container.load( "admin/chrome", function( responseText, textStatus ) {

Expand Down