diff options
Diffstat (limited to 'h-source/Public/Css')
-rw-r--r-- | h-source/Public/Css/mobile.css | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/h-source/Public/Css/mobile.css b/h-source/Public/Css/mobile.css new file mode 100644 index 0000000..55e470c --- /dev/null +++ b/h-source/Public/Css/mobile.css @@ -0,0 +1,53 @@ +/*stili per il layout fisso*/ +html, body +{ + margin: 0; + padding:0; +} + +body +{ + font:normal 15px/1.3 sans-serif,arial; + text-align: left; + background:#ffffff; +} + +img +{ + border:0px; +} + +.navigation-bar +{ + background-color: #015512; + height:35px; + padding-top:5px; + padding-right:5px; +} + +/*tree navigation*/ +.position_tree_box +{ + margin:5px 0px 25px 0px; + padding:5px; + font:normal 14px/1 sans-serif,arial; + border-top:1px solid #DC143C; + border-bottom:1px solid #DC143C; +} +.position_tree_box a +{ + text-decoration:none; + color:#DC143C; +} +.last_tree_element +{ + font-weight:bold; +} + + + +/*jquery mobile*/ +.ui-bar-a { + background: #B7F18C; +} + |