Skip to content

Commit

Permalink
Made the presentation use a black background, and tweaked some other …
Browse files Browse the repository at this point in the history
…colors.
  • Loading branch information
spraints committed Mar 26, 2010
1 parent 525ff0e commit 17a98e9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
6 changes: 3 additions & 3 deletions 02-relational/relational-databases.md
@@ -1,7 +1,7 @@
!SLIDE
@@@ sql
select *
from databases
from dbms

!SLIDE

Expand All @@ -10,13 +10,13 @@
!SLIDE
@@@ sql
select database_name
from databases
from dbms
where is_relational = 1

!SLIDE
@@@ sql
select d.database_name
from databases d
from dbms d
join database_types t
on t.id = d.database_type_id
where t.database_type = 'Relational'
4 changes: 2 additions & 2 deletions 03-nosql/a-overview.md
@@ -1,7 +1,7 @@
!SLIDE
@@@ sql
select d.database_name
from databases d
from dbms d
join database_types t
on t.id = d.database_type_id
where t.database_type <> 'Relational'
Expand All @@ -23,7 +23,7 @@
@@@ sql
select database_type, database_name
from database_types t
join databases d
join dbms d
on d.database_type_id = t.id

!SLIDE full-page
Expand Down
21 changes: 21 additions & 0 deletions bb.css
@@ -0,0 +1,21 @@
#preso, .slide, pre.sh_sourceCode
{
background-color: black;
color: white;
}

.slide
{
border: none;
}

.commandline code.command
{
color: green;
white-space: normal;
}

pre.sh_sourceCode .sh_string
{
color: #e9967a;
}

0 comments on commit 17a98e9

Please sign in to comment.