From ef02dd7ad670bd483dfc1f0c6524e88daee40e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Ventura?= Date: Fri, 17 Feb 2017 12:35:04 +0100 Subject: [PATCH] Add navigation between prototypes to the top of the page. --- index.html | 4 ++++ style.css | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/index.html b/index.html index cf716966c8cf9..59a53291fe829 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,10 @@ +
+ 1 + 2 +
diff --git a/style.css b/style.css index 49a653faa93db..5ae097ceb1923 100644 --- a/style.css +++ b/style.css @@ -531,3 +531,29 @@ p a { position: relative; left: 5px; } + +.prototypes { + display: flex; + position: absolute; + top: 24px; + left: 24px; +} + +.prototypes a { + display: inline-block; + width: 28px; + height: 28px; + font-size: 12px; + border: 1px solid #b4b9be; + line-height: 28px; + border-radius: 50%; + text-decoration: none; + text-align: center; + margin-right: 8px; +} + +.prototypes a.is-current { + background: #008ec2; + border-color: #008ec2; + color: #fff; +}