Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
119 changes: 119 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,122 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/


*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

header,
footer {
background-color: khaki;
}

h1 {
font-size: 250%;
text-align: center;
margin-top: 0;
}

h2 {
margin-top: 2em;
margin-bottom: 3em;
}

h2,
h3 {
text-align: center;
}

hr {
margin-top: 3em;
}


.math img {
display: block;
margin: 0 auto;
float: none;

}

img {
margin: 0 0 20px 20px;
float: right;

}

main {

margin: 2em 2em 3em 2em;
}

article {
font-size: 125%;
}

article:first-of-type {
font-size: 150%;
}

ul {
list-style: none;
margin: 0 auto;
}

a {
/* text-decoration: none; */
font-family: 'Lora', serif;
transition: .25s linear;
}

p {
word-break: break-all;
}

nav {
display: block;


}

.one ul {
padding: 0.75em 0;
background: #ECDAD6;
}

.one a {
margin: 1em;
color: #695753;
}

.one li {
display: inline;

}

.one ul {
list-style: none;
margin: 0;
padding-left: 0;
display: flex;
justify-content: space-between;

}


footer {
padding: 1em;
background-color: khaki;
display: flex;
justify-content: space-between;
}

footer span {
margin-top: 1em;

}
Loading