diff options
| author | root | 2014-11-27 02:41:21 +0100 |
|---|---|---|
| committer | root | 2014-11-27 02:41:21 +0100 |
| commit | 92babb43a2a0041a71b54db35cbc9d2fba908a63 (patch) | |
| tree | 8971101b53b6a6b12a092b456dc11a4dbfc034a3 /linkshorter/css | |
| parent | 2b24f3ef0e800f878177973eefcb28380a292503 (diff) | |
| download | tools.iamfabulous.de-92babb43a2a0041a71b54db35cbc9d2fba908a63.tar.gz | |
Rewrote the linkshorter.
Diffstat (limited to 'linkshorter/css')
| -rw-r--r-- | linkshorter/css/style.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/linkshorter/css/style.css b/linkshorter/css/style.css new file mode 100644 index 0000000..b5aa321 --- /dev/null +++ b/linkshorter/css/style.css @@ -0,0 +1,68 @@ +html { + position: relative; + min-height: 100%; +} + +body { + margin-bottom: 60px; +} + +a { + color: #3083D6; +} + +/* navbar */ + +.navbar-default { + background-color: #3083D6 ; + border-color: #3083D6 ; + background: #3083D6 ; +} + +.navbar-default .navbar-brand { + color: white; +} + +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { +} + +.navbar-default .navbar-nav > li > a { + color: white; +} + +.noscript { + background-color: #dd5148; + color: white; +} + +/* footer */ + +.footer { + background-color: #3083D6 ; + border-color: #3083D6 ; + background: #3083D6 ; + color: white ; + position: absolute; + bottom: 0; + width: 100%; +} + +.footer-a { + color: white; +} + +.footer-a:hover { + color: white; + text-decoration: underline; +} + +.underline { + text-decoration: underline; +} + +.actives { + color: white !important; + text-decoration: underline; + font-weight: bold; +} |
