From 710208fefb046c698760edf290fb6f1190c560f6 Mon Sep 17 00:00:00 2001 From: Sophia Date: Thu, 20 Jan 2022 14:39:54 -0800 Subject: [PATCH] Added , --- main.css | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/main.css b/main.css index 9613ec0..885ef92 100644 --- a/main.css +++ b/main.css @@ -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; + }