Changeset 337 for Dev/branches/rest-dojo-ui/client/rft
- Timestamp:
- 05/31/12 17:03:19 (13 years ago)
- Location:
- Dev/branches/rest-dojo-ui/client/rft/css
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/client/rft/css/general.css
r335 r337 1 /* General.css contains general fixes that are not strongly related to any other stylesheets. 2 They are typically small fixes or tweaks to adjust spacing and/or borders/colours */ 3 1 4 .gamelab .dijitTabPaneWrapper { 2 5 border: none; -
Dev/branches/rest-dojo-ui/client/rft/css/layout.css
r336 r337 1 1 *:focus { 2 /* Disabled Chrome focus outlines! */ 2 3 outline: none; 3 4 } … … 5 6 width: 100%; 6 7 height: 100%; 7 font-size: .813em;8 font-size: 13px; 8 9 background-color: #333333; 9 10 } … … 14 15 15 16 /* Headings */ 16 .gamelab h1 { 17 font-size: 3em; 18 margin-bottom: 0.727em; 17 .gamelab h1 { 18 /* Main logo */ 19 float: left; 20 clear: left; 21 font-size: 48px; 22 color: #999999; 23 margin: 0 10px 8px 10px; 24 padding: 0; 25 line-height: 48px; 19 26 font-weight: normal !important; 27 -webkit-user-select: none; 28 -moz-user-select: none; 20 29 } 21 30 .gamelab h2 { 22 font-size: 1.375em;23 line-height: 1.5em;24 margin-top: 1em;25 margin -bottom: 0.60em;26 font-weight: normal;31 /* Content pane title */ 32 font-size: 22px; 33 line-height: 30px; 34 margin: 0; 35 padding: 0; 27 36 } 28 .gamelab h 3,29 .gamelab h4, 30 .gamelab h5, 31 .gamelab h6 { 32 font-size: 1.125em;33 font-weight: normal;37 .gamelab h2 .rftIcon { 38 float: left; 39 width: 32px; 40 height: 32px; 41 background-image: url('images/icons/rftIcons32.png'); 42 margin-right: 8px; 34 43 } 35 .mainLogo { 36 float: left; 37 height: 50px; 38 font-size: 50px; 39 width: auto; 40 -webkit-margin: 5px 20px 5px 20px !important; 41 padding: 0 !important; 42 line-height: 50px; 43 color: #999999; 44 .gamelab h3 { 45 /* Section headers */ 46 font-size: 18px; 44 47 } 45 .gamelab .dijitMenuBar.mainMenu { 46 width: auto; 48 .gamelab h4 { 49 /* Small text headers/paragraph headers */ 50 font-size: 16px; 51 } 52 53 /* Topbar */ 54 .topbar { 55 overflow-y: hidden; 56 } 57 .topbar .dijitMenuBar { 47 58 float: right; 48 margin: 10px 50px 10px 20px; 59 clear: right; 60 margin-top: 16px; 49 61 } 62 63 /* Breadcrumbs */ 50 64 .breadcrumbs { 51 65 float: left; … … 53 67 width: 100%; 54 68 text-align: center; 69 height: 16px; 70 line-height: 16px; 55 71 } 56 72 .breadcrumb { … … 62 78 font-size: 14px; 63 79 } 64 .menuItem { 65 margin: 0px 5px 0px 5px; 80 81 /* Content */ 82 .dijitContentPane.page { 83 padding: 0; 66 84 } 67 .content {85 .content.dijitContentPane { 68 86 display: block; 69 87 clear: both; 88 padding: 0; 70 89 background-color: #555555; 71 90 /* Background gradient time! */ … … 83 102 ); 84 103 } 104 .content.dijitContentPane .dijitBorderContainer { 105 padding: 2px; 106 } 107 108 /* General */ 85 109 .loginLabel { 86 110 float: left; … … 110 134 width: 30px; 111 135 } 112 113 /* Basic layout */114 .gamelab .header {115 background-color: #333333;116 height: 80px;117 font-size: 16px;118 }119 .title {120 height: 24px;121 padding: 4px 0;122 margin: 4px;123 }124 .title .titleIcon {125 float: left;126 width: 32px;127 height: 32px;128 clear: none;129 margin-right: 8px;130 margin-top: -4px;131 margin-bottom: -4px;132 }133 .title .titleText {134 float: left;135 line-height: 24px;136 font-size: 24px;137 margin: 0;138 }139 136 .verticalTabList { 140 137 width: 190px; -
Dev/branches/rest-dojo-ui/client/rft/css/rftButtons.css
r335 r337 153 153 margin: 2px 4px -2px 4px; 154 154 } 155 156 /* MainMenuButton */ 157 .gamelab .dijitMenuBar .rftMainMenuButton { 158 border: none; 159 height: 30px; 160 width: auto; 161 background-image: none; 162 background: transparent; 163 text-align: center; 164 color: #999999; 165 font-size: 24px; 166 line-height: 30px; 167 padding: 0 4px; 168 margin: 0 5px; 169 box-shadow: none; 170 transition: all 0.3s; 171 -moz-transition: all 0.3s; 172 -webkit-transition: all 0.3s; 173 -o-transition: all 0.3s; 174 } 175 .gamelab .dijitMenuBar .rftMainMenuButton.dijitMenuItemHover { 176 color: #ffffff; 177 font-size: 26px; 178 transition: all 0.1s; 179 -moz-transition: all 0.1s; 180 -webkit-transition: all 0.1s; 181 -o-transition: all 0.1s; 182 } 183 .gamelab .dijitMenuBar .rftMainMenuButton.dijitMenuItemActive { 184 color: #0794d1 !important; 185 font-size: 26px; 186 transition: all 0.1s; 187 -moz-transition: all 0.1s; 188 -webkit-transition: all 0.1s; 189 -o-transition: all 0.1s; 190 } 191 .gamelab .dijitMenuBar .rftMainMenuButton.dijitMenuItemSelected { 192 color: #ffffff; 193 font-size: 26px; 194 }
Note: See TracChangeset
for help on using the changeset viewer.