Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • jj3249/lab1
1 result
Select Git revision
Loading items
Show changes
Commits on Source (6)
......@@ -8,7 +8,11 @@
</head>
<body>
<nav>TODO</nav>
<nav>
<a href="index.html">Home</a>
<a href="facts.html">Facts</a>
<a href="blog/index.html">Blog</a>
</nav>
<header>
<h1>TODO</h1>
......
......@@ -8,7 +8,11 @@
</head>
<body>
<nav></nav>
<nav>
<a href="index.html">Home</a>
<a href="facts.html">Facts</a>
<a href="blog/index.html">Blog</a>
</nav>
<header>
<h1>Penguin Species</h1>
......
......@@ -7,8 +7,11 @@
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>TODO</nav>
<nav>
<a href="index.html">Home</a>
<a href="facts.html">Facts</a>
<a href="blog/index.html">Blog</a>
</nav>
<header>
<h1>TODO</h1>
......
<!DOCTYPE html>
<html>
<nav>
<a href="../../">CS375</a>
<a href="../..//readings">Readings</a>
<a href="../..//labs">Labs</a>
<a href="../..//homeworks">Homeworks</a>
<!-- <a href="../..//project">Project</a> -->
</nav>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TODO</title>
<title>BLOG</title>
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<nav>
<a href="index.html">Home</a>
<a href="facts.html">Facts</a>
<a href="blog/index.html">Blog</a>
<!-- <a href="../..//project">Project</a> -->
</nav>
<body>
......
nav {
display: flex;
justify-content: space-between;
}
body {
margin: 0 auto;
padding: 2rem;
line-height: 1.3em;
/*color: #282828;*/
font-size: 1.1em;
/* this seemed to fit most code blocks
and it's 2^9 + 2^8 + 2^6 which pleases me */
max-width: 832px;
}
h1, h2, h3, h4, h5, h6 {
/* this was needed to make the lines
not squish together when wrapping
why? beats me */
line-height: 1em;
}
/* slightly darker for code embedded in text */
code {
background: #f0f0f0;
}
/* apply to code containing divs so if there's overflow
it'll retain the correct background color when scrolling
horizontally, because its container will also be colored */
div.sourceCode {
background: #fbfbfb;
}
/* also apply to pre tags because if a fenced block doesn't
have a language, it won't have a sourceCode class applied
to its container */
pre {
background: #fbfbfb;
}
/* clear darker styling because it's not embedded in text */
pre code {
background: #fbfbfb;
}
table {
border-collapse: collapse;
}
td {
border: 1px solid black;
}
.nice-table th, .nice-table td {
padding: 5px;
}
img {
max-width: 100%;
}
video {
max-width: 100%;
}
blockquote {
border-left: 2px solid #AAA;
margin-left: 1.5rem;
padding-left: 1rem;
font-size: 1rem;
color: #666;
}
blockquote code {
font-size: 0.9rem;
}
.exercise-section {
margin-top: 5rem;
background-color: #e5e5ff;
padding: 1rem;
}
.exercise {
border-bottom: 1px solid #444;
margin-top: 3rem;
text-align: center;
}
figcaption {
font-size: 1rem;
}
.q {
background: lightgreen;
border: 1px solid black;
padding: 3px;
}
.q:before {
content: "Q"
}
/* reset all styles to demo HTML */
.html-example {
border: 1px solid black;
}
.html-example > div {
all: initial;
}