summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimeon Simeonov2021-02-25 14:11:18 +0100
committerSimeon Simeonov2021-02-25 14:11:18 +0100
commit9c6854707d2f3fd0866e82560ce95d1a87e2d794 (patch)
tree290bca71266e9fb9913870cc9576035abab4d961
parentdecc91569d1971c0cac0fb1c3a5f556a5b53cd7d (diff)
Make last moment adjustments
-rw-r--r--reveal.js/dist/theme/fifty.css10
-rwxr-xr-xreveal.js/sqlalchemy.html5
2 files changed, 7 insertions, 8 deletions
diff --git a/reveal.js/dist/theme/fifty.css b/reveal.js/dist/theme/fifty.css
index a55b3c2..5f5ab00 100644
--- a/reveal.js/dist/theme/fifty.css
+++ b/reveal.js/dist/theme/fifty.css
@@ -44,7 +44,7 @@ section.has-dark-background, section.has-dark-background h1, section.has-dark-ba
44 44
45.reveal { 45.reveal {
46 font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; 46 font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
47 font-size: 24px; 47 font-size: 22px;
48 font-weight: normal; 48 font-weight: normal;
49 color: #000; } 49 color: #000; }
50 50
@@ -117,8 +117,8 @@ section.has-dark-background, section.has-dark-background h1, section.has-dark-ba
117.reveal img, 117.reveal img,
118.reveal video, 118.reveal video,
119.reveal iframe { 119.reveal iframe {
120 max-width: 95%; 120 max-width: 96%;
121 max-height: 95%; } 121 max-height: 96%; }
122 122
123.reveal strong, 123.reveal strong,
124.reveal b { 124.reveal b {
@@ -179,10 +179,10 @@ section.has-dark-background, section.has-dark-background h1, section.has-dark-ba
179.reveal pre { 179.reveal pre {
180 display: block; 180 display: block;
181 position: relative; 181 position: relative;
182 width: 90%; 182 width: 95%;
183 margin: 20px auto; 183 margin: 20px auto;
184 text-align: left; 184 text-align: left;
185 font-size: 0.55em; 185 font-size: 0.60em;
186 font-family: monospace; 186 font-family: monospace;
187 line-height: 1.1em; 187 line-height: 1.1em;
188 word-wrap: break-word; } 188 word-wrap: break-word; }
diff --git a/reveal.js/sqlalchemy.html b/reveal.js/sqlalchemy.html
index 956538f..4bafccd 100755
--- a/reveal.js/sqlalchemy.html
+++ b/reveal.js/sqlalchemy.html
@@ -67,10 +67,9 @@
67 67
68 <section> 68 <section>
69 <h2>Basic architecture</h2> 69 <h2>Basic architecture</h2>
70 <p><em>SQLAlchemy</em> consists of several components, including the SQL expression language and the ORM.</p> 70 <p><em>SQLAlchemy</em> consists of several components, including the the <em>ORM</em>.</p>
71 <p>In order to enable these components, <em>SQLAlchemy</em> also provides an <em>Engine</em> class and <em>MetaData</em> class.</p>
72 <ul> 71 <ul>
73 <li><em>Engine</em>- manages the <em>SQLAlchemy</em> connection pool and the database-independent SQL dialect layer</li> 72 <li><em>Engine</em>- manages the connection pool and the RDBMS-independent SQL dialect layer</li>
74 <li><em>MetaData</em> - used to collect and organize information about your table layout (schema)</li> 73 <li><em>MetaData</em> - used to collect and organize information about your table layout (schema)</li>
75 <li><em>Session</em> - establishes all conversations with the RDBMS and represents a "holding zone" for all the objects which you've loaded or associated with it during its lifespan</li> 74 <li><em>Session</em> - establishes all conversations with the RDBMS and represents a "holding zone" for all the objects which you've loaded or associated with it during its lifespan</li>
76 <li><em>SQL expression language</em> - provides an API to execute your queries and updates against your tables, all from Python, and all in a database-independent way (low-level interface)</li> 75 <li><em>SQL expression language</em> - provides an API to execute your queries and updates against your tables, all from Python, and all in a database-independent way (low-level interface)</li>