aboutsummaryrefslogtreecommitdiff
path: root/design/sass/_header.scss
diff options
context:
space:
mode:
Diffstat (limited to 'design/sass/_header.scss')
-rw-r--r--design/sass/_header.scss43
1 files changed, 41 insertions, 2 deletions
diff --git a/design/sass/_header.scss b/design/sass/_header.scss
index 487f1fc..29e1ef2 100644
--- a/design/sass/_header.scss
+++ b/design/sass/_header.scss
@@ -16,6 +16,9 @@ header {
margin-top: 4px;
float: right;
}
+ .nologin {
+ margin-top: -2px;
+ }
}
nav {
@include fancy-sans-bold;
@@ -59,7 +62,7 @@ nav {
position: absolute;
z-index: 10;
margin-top: 4px;
- margin-left: 2rem;
+ margin-left: 4rem;
background: #fff;
color: #60516E;
padding: 10px;
@@ -96,5 +99,41 @@ nav {
}
}
#user-menu {
- margin-left: 4rem;
+ margin-left: 8rem;
+}
+
+.circle{
+ width: 26px;
+ height: 20px;
+ border-radius: 100%;
+ position: relative;
+ margin: -2px 8px 0 0;
+ display: inline-block;
+ vertical-align: middle;
+ background: $link_color;
+ text-indent: -3000em;
+}
+.circle:hover{
+ background: $link_color;
+}
+.circle:active{
+ background: $link_color;
+}
+.circle:before,
+.circle:after{
+ content:'';position:absolute;top:0;left:0;right:0;bottom:0;
+}
+/* PLUS */
+.circle.plus:before,
+.circle.plus:after {
+ background: white;
+}
+.circle.plus:before{
+ width: 2px;
+ margin: 10px auto;
+}
+.circle.plus:after{
+ margin: auto 10px;
+ height: 2px;
+ box-shadow: none;
}