Skip to content

Commit

Permalink
subDocs website updates
Browse files Browse the repository at this point in the history
  • Loading branch information
HadleighJae committed Dec 8, 2023
1 parent 4425134 commit 91e23e6
Show file tree
Hide file tree
Showing 5 changed files with 9,901 additions and 49 deletions.
6 changes: 2 additions & 4 deletions docs/subDocs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ <h3>Fall 2023</h3>
<ul>
<li><a class="active" href="about.html">About</a></li>
<li><a href="texts.html">Texts</a></li>
<li><a href="analysis.html">Analysis</a></li>
<li><a href="map.html">Analysis</a></li>
<li><a target="_blank" href="https://hadleighjae.github.io/stu2023_DM_Journal/mitfordODD.html">ODD</a></li>
<li style="float:right"><a href="index.html">Home</a></li>
</ul>
</nav>
<img src="images/pennStateLogo.png" alt="Penn State University Logo"/>
<!--ebb: When pointing to images in your own repo, always use *relative* file associations: Here we are pointing to an images directory that's in the same
folder as this HTML file we're editing. And we're going into the images folder to deliver the newt-mosaic4.png file inside. -->
<p>For the Digital Mitford Project, students Nathan Hammer, Hadleigh Jae Bills, and Josiah Ruiz analyzed Mitford's journal entries through handwriting analysis, transcription, and TEI tagging.</p>
<footer>
<div class="footer-column">
<p>We are at <a class="footer" href="https://behrend.psu.edu/">Penn State Erie, The Behrend College</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/subDocs/analysis.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h3>Fall 2023</h3>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="texts.html">Texts</a></li>
<li><a class="active" href="analysis.html">Analysis</a></li>
<li><a class="active" href="map.html">Analysis</a></li>
<li><a target="_blank" href="https://hadleighjae.github.io/stu2023_DM_Journal/mitfordODD.html">ODD</a></li>
<li style="float:right"><a href="index.html">Home</a></li>
</ul>
Expand Down
6 changes: 2 additions & 4 deletions docs/subDocs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ <h3>Fall 2023</h3>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="texts.html">Texts</a></li>
<li><a href="analysis.html">Analysis</a></li>
<li><a href="map.html">Analysis</a></li>
<li><a target="_blank" href="https://hadleighjae.github.io/stu2023_DM_Journal/mitfordODD.html">ODD</a></li>
<li style="float:right"><a class="active" href="index.html">Home</a></li>
</ul>
</nav>
<img src="images/pennStateLogo.png" alt="Penn State University Logo"/>
<!--ebb: When pointing to images in your own repo, always use *relative* file associations: Here we are pointing to an images directory that's in the same
folder as this HTML file we're editing. And we're going into the images folder to deliver the newt-mosaic4.png file inside. -->
<img src="https://www.berkshirehistory.com/bios/images/mrmitford.gif" alt="Mary Mitford Portrait"/>
<div class="card">
<h1>Members:</h1>
<ul>
Expand Down
173 changes: 173 additions & 0 deletions docs/subDocs/mitford.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Title Box */

.title {
max-width: 100%;
padding: 10px;
justify-content: center;
align-items: center;
text-align: center;
border-style: solid;
}

.title h1 {
font-size: 55px;
padding: 5px;
}

.title h2 {
font-size: 30px;
padding: 5px;
}

.title h3 {
font-size: 25px;
padding: 5px;
}

/* Navigation */

nav {
display: block;
background-color: indigo;
width: 100%;
font-size: 16px;
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: indigo;
}

nav li {
float: left;
}

nav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

nav li a:hover:not(.active) {
background-color: black;
}

.active {
background-color: black;
}

.siteTitle {
display: block;
border: 2px solid black;
max-width: 100%;
text-align: center;
font-size: 40px;
}

.notebook {
padding: 10px;
margin: 10px;
border: 1px solid black;
}

.yearSection {
padding: 5px;
margin: 5px;
border: 1px solid blue;
}

.yearSection h1 {
font-size: 35px;
text-align: center;
}

.month {
font-size: 30px;
border: 1px solid green;
}

.month h1 {
font-size: 25px;
}

.entry {
padding: 5px;
margin-left: 5px;
margin-right: 5px;
border: 1px solid purple;
}

.entry h1 {
font-size: 20px;
text-align: left;
}

.entry p {
font-size: 15px;
}

.placeName {
color: green;
}

.persName {
color: blue
}

.title {
font-style: italic;
}

.orgName {
color: purple;
}

.unclear {
color: red;
}

table {
margin-top: 5px;
border-collapse: collapse;
width: 100%;
border: 2px solid black;
}

tr {
border-collapse: collapse;
border: 0
}

th {
border-collapse: collapse;
border: 1px solid #000066;
background-color: #bad7e6 /*#7E967E*/;
padding: 1px;
vertical-align:top;
}

td {
border-collapse: collapse;
border: 1px solid #000066;
padding: 7px;
vertical-align:top;
}

a {
text-decoration: none;
}

li {
list-style-position: inside;
}
Loading

0 comments on commit 91e23e6

Please sign in to comment.