diff --git a/assets/global.css b/assets/global.css
index 52670c7..51f9eae 100644
--- a/assets/global.css
+++ b/assets/global.css
@@ -52,6 +52,10 @@ body {
overflow: auto;
}
+.app-bar {
+ position: absolute;
+}
+
.main-content, footer {
margin: 20px;
}
diff --git a/computer-science-blog/css/main.css b/computer-science-blog/css/main.css
index 5a04122..b717c79 100644
--- a/computer-science-blog/css/main.css
+++ b/computer-science-blog/css/main.css
@@ -36,6 +36,9 @@
}
.carousel-inner .item {
+ height: 100%;
+ width: 100%;
+ border: none;
padding: 15px;
}
@@ -46,24 +49,13 @@
.carousel-indicators .active {
background-color: var(--mdc-theme-secondary);
}
-/* ensure content below buttons doesn't cover them */
-.presentation-buttons-container {
- width: 100%;
- min-height: 32px;
-}
/* revert changes made by Bootstrap */
-p {
- margin: 0;
-}
.carousel-indicators {
margin: 0;
position: initial;
width: auto;
}
-.carousel h1, .carousel h2, .carousel h3, .carousel .h1, .carousel .h2, .carousel .h3 {
- margin-top: 0;
-}
/* add side margins depending on screen size */
#main-content {
diff --git a/computer-science-blog/css/presentation-imports.css b/computer-science-blog/css/presentation-imports.css
new file mode 100644
index 0000000..287ebca
--- /dev/null
+++ b/computer-science-blog/css/presentation-imports.css
@@ -0,0 +1,12 @@
+html, body {
+ font-family: 'Roboto';
+ background: transparent;
+}
+
+/* revert changes made by Bootstrap */
+p {
+ margin: 0;
+}
+h1, h2, h3, .h1, .h2, .h3 {
+ margin-top: 0;
+}
diff --git a/computer-science-blog/index.html b/computer-science-blog/index.html
index 819f5a6..c2e0183 100644
--- a/computer-science-blog/index.html
+++ b/computer-science-blog/index.html
@@ -72,8 +72,7 @@
-
-
-
-
-
-
+
+
+
+
-
+
+ Cookies are not, unfortunately, the treats made of dough. They are, in fact, small text files, stored in binary, usually one-line long, which store relevant + information about websites visited by a computer. This might include a selected language, or ad preferences. Some websites even use + cookies to store passwords that are set to ‘remember’. Thus, cookies need strong security and the ID of each one must be unfathomably + difficult to find without permission, to reduce the risk of hacking. Cookies are stored on the computer, as opposed to the website. + Because both HTTP and HTTPS don't transmit user data, none of the websites you visit know who you are. Therefore, whenever you + visit a webpage, it reads the cookies it stored on your computer last time you visited it, in order to find out information like your email address. + Many people are against cookies, due to privacy concerns; under new GDPR regulations, all end users in Europe must now be notified of + cookie use on each website they visit (if the website uses cookies). Many sites also give an option to refuse cookies. +
+diff --git a/computer-science-blog/pages/cookies.html b/computer-science-blog/pages/cookies.html index e8e858b..1fb3fe6 100644 --- a/computer-science-blog/pages/cookies.html +++ b/computer-science-blog/pages/cookies.html @@ -1,12 +1,32 @@ -
-
- Cookies are not, unfortunately, the treats made of dough. They are, in fact, small text files, stored in binary, usually one-line long, which store relevant - information about websites visited by a computer. This might include a selected language, or ad preferences. Some websites even use - cookies to store passwords that are set to ‘remember’. Thus, cookies need strong security and the ID of each one must be unfathomably - difficult to find without permission, to reduce the risk of hacking. Cookies are stored on the computer, as opposed to the website. - Because both HTTP and HTTPS don't transmit user data, none of the websites you visit know who you are. Therefore, whenever you - visit a webpage, it reads the cookies it stored on your computer last time you visited it, in order to find out information like your email address. - Many people are against cookies, due to privacy concerns; under new GDPR regulations, all end users in Europe must now be notified of - cookie use on each website they visit (if the website uses cookies). Many sites also give an option to refuse cookies. -
+ + +
+ + + + + + + + + + + + + + +
+