|
Revision 1276, 2.4 kB
(checked in by dave, 1 year ago)
|
stand in default theme
|
| Line | |
|---|
| 1 |
<style type="text/css"> |
|---|
| 2 |
/* |
|---|
| 3 |
USER TOOLBAR: IN DEFAULT ELGG, THIS SITS |
|---|
| 4 |
AT THE VERY TOP OF THE PAGE. |
|---|
| 5 |
*/ |
|---|
| 6 |
|
|---|
| 7 |
div#elggtoolbar { |
|---|
| 8 |
height:30px; |
|---|
| 9 |
font-family:Arial, 'Trebuchet MS','Lucida Grande', sans-serif; |
|---|
| 10 |
top:0; |
|---|
| 11 |
left: 0; |
|---|
| 12 |
width:100%; |
|---|
| 13 |
background:url({{url}}mod/toolbar/images/toolbar-bg.gif) repeat-x bottom; |
|---|
| 14 |
color:#000; |
|---|
| 15 |
margin:0; |
|---|
| 16 |
padding:0 0 4px 0; |
|---|
| 17 |
} |
|---|
| 18 |
|
|---|
| 19 |
div#elggtoolbar p { |
|---|
| 20 |
margin:0; |
|---|
| 21 |
padding:6px 0 0 5px; |
|---|
| 22 |
color:#91B6C0; |
|---|
| 23 |
} |
|---|
| 24 |
|
|---|
| 25 |
div#elggtoolbar span a { |
|---|
| 26 |
color:#ccc; |
|---|
| 27 |
border:1px solid #777; |
|---|
| 28 |
padding:2px 4px 2px 4px; |
|---|
| 29 |
} |
|---|
| 30 |
|
|---|
| 31 |
div#elggtoolbar span a:hover { |
|---|
| 32 |
text-decoration:none; |
|---|
| 33 |
} |
|---|
| 34 |
|
|---|
| 35 |
div#elggtoolbar img { |
|---|
| 36 |
padding:0; |
|---|
| 37 |
margin:0 5px 0 0; |
|---|
| 38 |
border:0; |
|---|
| 39 |
} |
|---|
| 40 |
|
|---|
| 41 |
/* |
|---|
| 42 |
GLOBAL USER OPTIONS: LOGOUT AND ACCOUNT SETTINGS, TOP RIGHT |
|---|
| 43 |
*/ |
|---|
| 44 |
|
|---|
| 45 |
div#elggtoolbar #global-menuoptions{ |
|---|
| 46 |
float:right; |
|---|
| 47 |
text-align:right; |
|---|
| 48 |
width:300px; |
|---|
| 49 |
margin:4px 10px 0 0; |
|---|
| 50 |
font-size:0.9em; |
|---|
| 51 |
} |
|---|
| 52 |
|
|---|
| 53 |
div#elggtoolbar #global-menuoptions ul { |
|---|
| 54 |
margin:0; |
|---|
| 55 |
padding:0; |
|---|
| 56 |
} |
|---|
| 57 |
|
|---|
| 58 |
div#elggtoolbar #global-menuoptions li { |
|---|
| 59 |
margin: 0; |
|---|
| 60 |
padding: 0; |
|---|
| 61 |
display: inline; |
|---|
| 62 |
list-style-type: none; |
|---|
| 63 |
border: none; |
|---|
| 64 |
} |
|---|
| 65 |
|
|---|
| 66 |
div#elggtoolbar #global-menuoptions li a{ |
|---|
| 67 |
text-decoration:underline; |
|---|
| 68 |
padding:0 10px 0 0; |
|---|
| 69 |
margin:20px 0 0 0; |
|---|
| 70 |
color:#000; |
|---|
| 71 |
background:transparent; |
|---|
| 72 |
} |
|---|
| 73 |
|
|---|
| 74 |
div#elggtoolbar #global-menuoptions p { |
|---|
| 75 |
padding:0 10px 0 0; |
|---|
| 76 |
} |
|---|
| 77 |
|
|---|
| 78 |
div#elggtoolbar #global-menuoptions img { |
|---|
| 79 |
padding:0; |
|---|
| 80 |
margin:0 10px 0 0; |
|---|
| 81 |
} |
|---|
| 82 |
|
|---|
| 83 |
/* |
|---|
| 84 |
USER NAVIGATION: THIS STYLES THE USERS MAIN NAV IN THE TOOLBAR, |
|---|
| 85 |
IN DEFAULT ELGG IT SITS OVER ON THE LEFT HAND SIDE |
|---|
| 86 |
*/ |
|---|
| 87 |
|
|---|
| 88 |
div#elggtoolbar #navigation { |
|---|
| 89 |
height: 19px; |
|---|
| 90 |
margin: 3px 0 0 4px; |
|---|
| 91 |
padding:0; |
|---|
| 92 |
text-align:left; |
|---|
| 93 |
float:left; |
|---|
| 94 |
} |
|---|
| 95 |
|
|---|
| 96 |
div#elggtoolbar #navigation li { |
|---|
| 97 |
margin: 0; |
|---|
| 98 |
padding: 3px; |
|---|
| 99 |
display: inline; |
|---|
| 100 |
list-style-type: none; |
|---|
| 101 |
float: left; |
|---|
| 102 |
} |
|---|
| 103 |
|
|---|
| 104 |
div#elggtoolbar #navigation a { |
|---|
| 105 |
margin: 0 2px 0 0; |
|---|
| 106 |
text-decoration: none; |
|---|
| 107 |
font-size:90%; |
|---|
| 108 |
color:#000; |
|---|
| 109 |
background:#efefef; |
|---|
| 110 |
border:1px solid #ccc; |
|---|
| 111 |
padding:2px 4px 2px 4px; |
|---|
| 112 |
} |
|---|
| 113 |
|
|---|
| 114 |
div#elggtoolbar #navigation a:hover { |
|---|
| 115 |
background:#E0EEFC; |
|---|
| 116 |
} |
|---|
| 117 |
|
|---|
| 118 |
div#elggtoolbar #navigation a.selected { |
|---|
| 119 |
background:#E0EEFC; |
|---|
| 120 |
border:1px solid #ccc; |
|---|
| 121 |
} |
|---|
| 122 |
|
|---|
| 123 |
div#elggtoolbar form { |
|---|
| 124 |
margin: 4px 0 0 4px; |
|---|
| 125 |
width: 700px; |
|---|
| 126 |
float: left; |
|---|
| 127 |
} |
|---|
| 128 |
|
|---|
| 129 |
div#elggtoolbar #powered-by-elgg { |
|---|
| 130 |
margin: 7px 4px 0 0; |
|---|
| 131 |
float: right; |
|---|
| 132 |
} |
|---|
| 133 |
|
|---|
| 134 |
div#container { |
|---|
| 135 |
margin-top: 1px; |
|---|
| 136 |
margin-left: auto; |
|---|
| 137 |
margin-right: auto; |
|---|
| 138 |
margin-bottom:0; |
|---|
| 139 |
} |
|---|
| 140 |
|
|---|
| 141 |
</style> |
|---|