aboutsummaryrefslogtreecommitdiff
path: root/tests/resources/assets/repo/style.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-08-17 17:38:27 -0300
committerEuAndreh <eu@euandre.org>2021-08-17 17:38:27 -0300
commit94e4b7a5117a727ef4f131246c8755409beb3c9c (patch)
treed9fc996aa3640a1796b471fa3a367876b3f7f15e /tests/resources/assets/repo/style.css
parentsrc/gistatic.c: Add <meta name="description" .../> to HTML <head> (diff)
downloadgistatic-94e4b7a5117a727ef4f131246c8755409beb3c9c.tar.gz
gistatic-94e4b7a5117a727ef4f131246c8755409beb3c9c.tar.xz
tests/: Move refs.html to sub-directory
Diffstat (limited to 'tests/resources/assets/repo/style.css')
-rw-r--r--tests/resources/assets/repo/style.css71
1 files changed, 71 insertions, 0 deletions
diff --git a/tests/resources/assets/repo/style.css b/tests/resources/assets/repo/style.css
new file mode 100644
index 0000000..f2cad9d
--- /dev/null
+++ b/tests/resources/assets/repo/style.css
@@ -0,0 +1,71 @@
+body {
+ font-family: monospace;
+ max-width: 1100px;
+ margin: 0 auto 0 auto;
+}
+
+.logo {
+ height: 6em;
+ width: 6em;
+}
+
+.header-horizontal-grouping {
+ display: flex;
+ align-items: center;
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+.header-description {
+ margin-left: 2em;
+}
+
+nav {
+ margin-top: 2em;
+}
+
+nav ul {
+ display: flex;
+ list-style-type: none;
+ margin-bottom: 0;
+}
+
+nav li {
+ margin-left: 10px;
+}
+
+nav a {
+ padding: 2px 8px 0px 8px;
+ color: black;
+}
+
+.selected-nav-item {
+ background-color: hsl(0, 0%, 87%);
+}
+
+hr {
+ margin-top: 0;
+ border: 0;
+ border-top: 3px solid hsl(0, 0%, 87%);
+}
+
+table {
+ margin: 2em auto;
+}
+
+th {
+ padding-bottom: 1em;
+}
+
+tbody tr:hover {
+ background-color: hsl(0, 0%, 93%);
+}
+
+td {
+ padding-left: 1em;
+ padding-right: 1em;
+}
+
+footer {
+ text-align: center;
+}