Added <a>, <em>

This commit is contained in:
Sophia Atkinson 2022-01-20 14:39:54 -08:00 committed by GitHub
parent 5d0f218b93
commit 710208fefb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 0 deletions

View File

@ -123,3 +123,38 @@ p {
font-family: monospace, monospace;
font-size: 1em
}
a {
-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
border-bottom: solid 1px;
color: #fff;
text-decoration: none;
}
a:hover {
border-bottom-color: transparent;
color: #fff !important;
text-decoration: none;
}
strong, b {
color: #fff;
font-weight: 400;
}
em, i {
color: #fff;
font-style: italic;
}
.align-left {
text-align: left;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}