diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-01-16 12:14:54 -0500 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-09-11 11:40:59 -0400 |
| commit | 76a893c2187f59e7fdb9bc8282b780efd9dd8504 (patch) | |
| tree | bbdbab4dc1df7ff44fa607162a00f38ab74a1b4e /min_selfservice/css/default.css | |
| parent | e55e22e00eba74f2713b52fccbbb380f454531f4 (diff) | |
RT# 39340 - Created minimal selfservice that only allows payments to be made, authorization is based on ip and mac address. This is not done yet need to write routine to get mac address from radius server based on ip address.
Diffstat (limited to 'min_selfservice/css/default.css')
| -rw-r--r-- | min_selfservice/css/default.css | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/min_selfservice/css/default.css b/min_selfservice/css/default.css new file mode 100644 index 000000000..74f3565cb --- /dev/null +++ b/min_selfservice/css/default.css @@ -0,0 +1,108 @@ +body { + background-color:#e8e8e8; + //font-family:Arial, Verdana, Helvetica, sans-serif; + //font-size:12px; + //color:#0D0700; +} + +body, li, ol, p, table, td, th, tr, a, ul, blockquote, div { + //font-family:Arial, Verdana, Helvetica, sans-serif; + //font-size:12px; + color:#0D0700; +} + +a { + //color:#00527f; + text-decoration:none; +} + +a:hover { + text-decoration:underline; +} +td.page{ + border-style:solid; + border-width:2px; + border-color:#cccccc; + background-color:#f8f8f8; + padding:10px; +} + +#menu_ul { + padding: 0; + //width: 840px; + margin: 0 auto; +} + +#menu_ul li { + float: left; + list-style: none; + position: relative; + border-right: 4px solid #e8e8e8; +} + +#menu_ul a { + display: block; + padding: 6px 8px; + color: #525151; + font-size: 13px; + font-weight: bold; + white-space: nowrap; + background: #cccccc; + -moz-border-radius-topleft:8px; + -moz-border-radius-topright:8px; + -webkit-border-radius-topleft:8px; + -webkit-border-radius-topright:8px; + border-top-left-radius:8px; + border-top-right-radius:8px; +} + +#menu_ul a:hover { + text-decoration:none; +} + +#menu_ul ul { + margin:0; + padding:0; + display:none; + position: absolute; + top: 100%; + left: -1px; + background: #ae2099; + border: 1px solid #ffffff; +} + +#menu_ul ul li { + float: none; + border-style: none; +} + +#menu_ul ul a { + padding: 4px 10px; + color: #ffffff; + font-size: 12px; + font-weight: normal; + background: transparent; +} + +#menu_ul ul a:hover { + background: #7e0079; + -moz-border-radius-topleft:0px; + -moz-border-radius-topright:0px; + -webkit-border-radius-topleft:0px; + -webkit-border-radius-topright:0px; + border-top-left-radius:0px; + border-top-right-radius:0px; +} + +#menu_ul a.current_menu, #menu_ul a.hover { + color: #ffffff; + background: #7e0079; +} + +#menu_ul img { + vertical-align:middle; + width: 7px; + height: 4px; + border-style: none; + margin-left: 10px; +}
\ No newline at end of file |
