diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-09-13 23:05:12 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-13 23:05:12 +0200 |
commit | d2475e6a146534b5e7aaf2cc7b0b9a75e418415e (patch) | |
tree | 47f2ce48a1c03d8ca6414d92a78c764e25a16e3f /web/src/css/header.less | |
parent | 9bacb6d426a54882235b8d745dbf123c7958c887 (diff) | |
download | mitmproxy-d2475e6a146534b5e7aaf2cc7b0b9a75e418415e.tar.gz mitmproxy-d2475e6a146534b5e7aaf2cc7b0b9a75e418415e.tar.bz2 mitmproxy-d2475e6a146534b5e7aaf2cc7b0b9a75e418415e.zip |
web: start gui
Diffstat (limited to 'web/src/css/header.less')
-rw-r--r-- | web/src/css/header.less | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/web/src/css/header.less b/web/src/css/header.less new file mode 100644 index 00000000..998c0612 --- /dev/null +++ b/web/src/css/header.less @@ -0,0 +1,62 @@ +header { + + background-color: white; + + .title-bar { + line-height: 25px; + text-align: center; + } + + @separator-color: lighten(grey, 15%); + + nav { + + border-bottom: solid @separator-color 1px; + + a { + display: inline-block; + padding: 3px 14px; + margin: 0 2px -1px; + border: solid transparent 1px; + //text-transform: uppercase; + //font-family: Lato; + + &.active { + border-color: @separator-color; + border-bottom-color: white; + } + &:hover { + /* + @preview: lightgrey; + border-top-color: @preview; + border-left-color: @preview; + border-right-color: @preview; + */ + text-decoration: none; + } + &.special { + @special-color: #396cad; + color: white; + background-color: @special-color; + border-bottom-color: @special-color; + &:hover { + background-color: lighten(@special-color, 10%); + } + } + } + + &:before { + content: " "; + } + + &:after { + clear: both; + } + + } + + .menu { + height: 100px; + border-bottom: solid @separator-color 1px; + } +}
\ No newline at end of file |