From cc22d3ffc89580a7e66f50c9ccad3546b4e38e45 Mon Sep 17 00:00:00 2001 From: resynth1943 <resynth1943@tutanota.com> Date: Fri, 3 Jul 2020 11:38:15 +0100 Subject: [PATCH] Add styles for replace list --- styling/replace_info.css | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 styling/replace_info.css diff --git a/styling/replace_info.css b/styling/replace_info.css new file mode 100644 index 0000000..af5d8ac --- /dev/null +++ b/styling/replace_info.css @@ -0,0 +1,48 @@ +.replace-info { + border-left: 10px solid #3d40fd; + padding-top: 5px; + background: #130233; + padding-bottom: 5px; +} + +.replace-info-list > li { + display: inline-block; +} + +.replace-info-list > li:not(:last-child) { + margin-right: 20px; +} + +.replace-info-list > li:not(:last-child)::after { + content: '|'; + margin-left: 20px; + color: rgb(189, 189, 189); +} + +.replace-info-list > li a { + text-decoration: none; + color: rgb(206, 206, 206); + padding: 10px; + border: 2px solid #1d0250; + background: #1f0452; + transition: background 0.25s linear; +} + +.replace-info-list > li a:hover, .replace-info-list > li a:focus { + background: #2d0675; +} + +.replace-info-addendum { + margin: 0; + padding: 0; + margin-bottom: 10px; + margin-left: 42px; + font-style: italic; + color: rgb(189, 189, 189); + /* display: inline-block; */ + display: none; +} + +.replace-info-list { + /* display: inline-block; */ +} \ No newline at end of file -- GitLab