@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("userstyles.org") {

/* Drop-Down Setting Example 01:
--The user is offered a list of different heading heights */

#main-header {
height: 5em;
}

/* Drop-Down Setting Example 02:
--Any valid CSS can be placed as the setting.
It can be an entire block of code, even an entire style sheet
as long it doesn't go over the size limit imposed. */

div {
border: 3px dashed green;
background-color: #ede4f1;
}

a {
outline: 4px solid red;
}

/* Text Setting Example 01:
--The user can input any text they wish to display*/

#main-header > h1::after {
content: "luckymouse?";
}

/* Text Setting Example 02:
--You can instruct the user to set a desired numerical value. 
This example changes the width of the BODY element in percentage. */

body {
width: 70%;
}

/* Color Setting Example:
--Changes the background color of the main heading and left sidebar. */

#main-header,
#left-sidebar > nav {
background: #C5FF9E !important;
}

/* Image Setting Example:
--The user is asked to provide an image. 1 default image is provided. */
body {
background: url(https://df6a.https.cdn.softlayer.net/80DF6A/static.userstyles.org/images/firefox.png) top right / 200px 200px repeat-y;
}


}