~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/media/tutorial.css

  • Committer: Matt Giuca
  • Date: 2009-02-25 10:19:29 UTC
  • mfrom: (1100.1.35 new-ui)
  • Revision ID: matt.giuca@gmail.com-20090225101929-v2206kbf3lgkm1kz
*Spoiler warning: Plot or ending details follow*

Merged from new-ui branch.

IVLE top bar and top of filebrowser and console have all been made over. They
look very shiny and web 2.0!

Added image-source top-level directory with SVG source images.

Added new chrome images to ivle/webapp/coremedia/images.

Redid a lot CSS and HTML.
Every page now has an H1 at the top (common UI). Moved existing H1s to the top
of the page. Other H1s have been cleaned up (moved to H2s or restyled).
IVLE top bar has been majorly cleaned up (previously had many layered divs);
now more accessible.

Subject icon replaced with tutorial one.

The funeral for the tacky yellow and blue stylesheet will be held this Friday.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    border-right: 2px solid gray;
8
8
    border-top: 1px solid gray;
9
9
    border-bottom: 2px solid gray;
 
10
    -moz-border-radius: 10px;
10
11
}
11
12
 
12
13
.exercisebox, .runoutput {
63
64
    margin-left: 1.5em;
64
65
}
65
66
 
 
67
/* Cancel out the main stylesheet's h1 (the golden bar at the top).
 
68
 * Make it just look like the default (HTML4) style sheet's h1, but a bit
 
69
 * smaller.
 
70
 */
 
71
#ivle_padding h1 {
 
72
    background: none;
 
73
    margin: 0;
 
74
    padding: 0;
 
75
    margin: 0.67em 0;
 
76
    border: 0;
 
77
    font-weight: bolder;
 
78
    /* font-size: 2em; (standard) */
 
79
    font-size: 1.6em;
 
80
}
 
81
 
66
82
h1 a, h2 a {
67
83
    color: black;
68
84
    text-decoration: none;
215
231
/* 'Note' callouts */
216
232
div.note
217
233
{
218
 
  border-right:   #87ceeb 1px solid;
219
 
  padding-right: 4px;
220
 
  border-top: #87ceeb 1px solid;
221
 
  padding-left: 4px;
222
 
  padding-bottom: 4px;
 
234
  padding: 4px;
223
235
  margin: 2px 5% 10px;
224
 
  border-left: #87ceeb 1px solid;
225
 
  padding-top: 4px;
226
 
  border-bottom: #87ceeb 1px solid;
227
236
  font-style: normal;
228
 
  font-family: verdana, arial;
 
237
  font-family: sans-serif;
229
238
  background-color: #b0c4de;
 
239
  -moz-border-radius: 10px;
 
240
}
 
241
 
 
242
div.note p.admonition-title
 
243
{
 
244
  font-weight: bold;
230
245
}
231
246
 
232
247
table.rst-example { border: 1px solid black; }