[virtualcommons-developer] [lighterprints] r37 - in sandbox/shawn: . src
Status: Beta
Brought to you by:
alllee
|
From: <sdf...@so...> - 2011-06-16 01:52:21
|
Author: sdfitzpa
Date: Wed Jun 15 18:52:14 2011
New Revision: 37
Log:
Changing fonts and spacing. I'm partial to Lucida Console myself but I'll gladly change it to another if people think it will look better. Might have to change the text sizing again depending on how it actually looks on my phone.
Modified:
sandbox/shawn/index.html
sandbox/shawn/src/index.js
Modified: sandbox/shawn/index.html
==============================================================================
--- sandbox/shawn/index.html Wed Jun 15 18:22:43 2011 (r36)
+++ sandbox/shawn/index.html Wed Jun 15 18:52:14 2011 (r37)
@@ -16,6 +16,16 @@
<!-- Application JS -->
<script type="text/javascript" src="src/index.js"></script>
<style>
+ .titleFont {
+ font-family: "Lucida Console", Monaco, monospace;
+ font-size: 125%;
+ margin-top: 20px;
+ }
+ .levelFont {
+ font-family: "Lucida Console", Monaco, monospace;
+ font-size: 110%;
+ margin-top: 20px;
+ }
.refreshBtn {
margin: 0 !important;
}
Modified: sandbox/shawn/src/index.js
==============================================================================
--- sandbox/shawn/src/index.js Wed Jun 15 18:22:43 2011 (r36)
+++ sandbox/shawn/src/index.js Wed Jun 15 18:52:14 2011 (r37)
@@ -207,6 +207,7 @@
items: [
{
html: "<h1>Lighter footprints</h1>",
+ cls: 'titleFont'
},
buttonPanel,
{
@@ -260,15 +261,22 @@
align: 'center'
},
items: [{
- html: 'Activities</br></br>Level 1'
+ html: 'Activities',
+ cls: 'titleFont'
+ },
+ {
+ html: 'Level 1',
+ cls: 'levelFont'
},
level1Panel,
{
- html: '</br>Level 2'
+ html: 'Level 2',
+ cls: 'levelFont'
},
level2Panel,
{
- html: '</br>Level 3'
+ html: 'Level 3',
+ cls: 'levelFont'
},
level3Panel,
{
@@ -291,7 +299,8 @@
align: 'center'
},
items: [{
- html: 'This would be where all the rules go'
+ html: 'Rules',
+ cls: 'titleFont'
},
{
xtype: 'button',
@@ -313,7 +322,8 @@
align: 'center'
},
items: [{
- html: 'This will have team progress info'
+ html: 'Team Progress',
+ cls: 'titleFont'
},
{
xtype: 'button',
@@ -335,7 +345,8 @@
align: 'center'
},
items: [{
- html: 'There would be some sort of discussion board here'
+ html: 'Discussion Board',
+ cls: 'titleFont'
},
{
xtype: 'button',
|