1
0
Fork 0
ewds/src/styles.css

96 lines
1.2 KiB
CSS

body {
margin: 0;
font-family: serif;
font-size: 1.3em;
}
header.page-header {
text-align: center;
border-bottom: 2px solid #d4a373;
}
.container {
width: 800px;
margin: 0 auto;
}
.quote-author {
text-align: right;
}
.buttons {
text-align: center;
}
div.button {
display: inline-block;
border: 1px solid #ccd5ae;
border-radius: 8px;
margin: 8px;
padding: 16px;
background-color: #e9edc9;
font-family: serif;
font-size: 1.3em;
width: 100px;
transition: background-color .2s;
cursor: pointer;
}
div.button:hover {
background-color: #ccd5ae;
transition: background-color .2s;
}
div.button p {
margin: 0;
}
div.button p.symbol {
text-align: left;
font-size: 2em;
font-weight: bold;
}
div.button p.html {
font-size: 0.7em;
text-align: right;
color: gray;
}
blockquote {
text-align: justify;
font-style: italic;
}
footer {
border-top: 2px solid #d4a373;
padding: 16px;
text-align: center;
margin-top: 16px;
font-size: 1em;
}
.tip {
text-align: right;
font-style: italic;
}
.footer-content {
opacity: .6;
transition: opacity .2s;
}
.footer-content:hover {
opacity: 1;
transition: opacity .2s;
}
footer p {
margin: 8px;
}
footer a {
color: #000000;
}
@media screen and (max-width: 799px) {
.container {
width: 90%;
}
}