Skip to content

Commit

Permalink
Update student.css
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjpatton authored Dec 12, 2023
1 parent 499eb20 commit 5eeae00
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions css/student.css
Original file line number Diff line number Diff line change
@@ -1 +1,74 @@
/* student_view.css */

body {
margin: 0;
}

ul.topnav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
font-family: 'Helvetica', 'Arial', 'Sans-Serif';
}

ul.topnav li {
float: left;
}

ul.topnav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: 'Helvetica', 'Arial', 'Sans-Serif';
}

ul.topnav li a:hover:not(.active) {
background-color: #111;
}

ul.topnav li a.active {
background-color: #6cabb4;
}

ul.topnav li.right {
float: right;
}

@media screen and (max-width: 600px) {
ul.topnav li.right,
ul.topnav li {
float: none;
}
}

h1, h2, p, section {
margin: 60px auto;
width: 70%;
font-family: 'Helvetica', 'Arial', 'Sans-Serif';
}

h1 {
font-size: 2.5em;
}

h2 {
font-size: 1.5em;
}

p {
font-size: 1em;
line-height: 2.0em;
color: #333;
word-wrap: break-word;
}

footer {
text-align: center;
border-top: 1px solid #d5d5d5;
font-size: .8em;
}

0 comments on commit 5eeae00

Please sign in to comment.