Created
March 8, 2013 14:30
-
-
Save sygo/5116790 to your computer and use it in GitHub Desktop.
alternative css for the pinapple
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.navbar { | |
top:10px; | |
min-width:80%; | |
background:khaki; | |
padding-left: 5px; | |
padding-right: 5px; | |
padding-top: 3px; | |
padding-bottom: 3px; | |
border-top-left-radius: 10px 10px; | |
border-top-right-radius: 10px 10px; | |
border-bottom-left-radius: 10px 10px; | |
border-bottom-right-radius: 10px 10px; | |
text-align:center; | |
color:black; | |
} | |
.content { | |
font-family: monospace; | |
min-width: 700px; | |
max-width: 700px; | |
text-align:center; | |
margin: 0 auto; | |
} | |
.contentTitle { | |
text-align:left; | |
padding-left: 10px; | |
padding-top: 2px; | |
padding-bottom: 2px; | |
border-top-left-radius: 10px 10px; | |
border-top-right-radius: 10px 10px; | |
background:firebrick; | |
font-weight:bold; | |
font-size:15; | |
color: white; | |
} | |
.contentContent { | |
text-align:left; | |
padding-left: 10px; | |
padding-right: 10px; | |
padding-top: 5px; | |
padding-bottom: 5px; | |
border-bottom-left-radius: 10px 10px; | |
border-bottom-right-radius: 10px 10px; | |
background:sienna; | |
min-height: 40px; | |
color:white; | |
border-color: darkred; | |
border-style: solid; | |
border-width: 1px | |
} | |
.sidePanelLeft { | |
position:absolute; | |
top:50px; | |
text-align:left; | |
min-width:300px; | |
font-family: monospace; | |
} | |
.sidePanelRight { | |
position:absolute; | |
right:1%; | |
top:50px; | |
text-align:left; | |
min-width:300px; | |
font-family: monospace; | |
} | |
.sidePanelTitle { | |
padding-left: 10px; | |
padding-top: 2px; | |
padding-bottom: 2px; | |
border-top-left-radius: 10px 10px; | |
border-top-right-radius: 10px 10px; | |
background:firebrick; | |
font-weight:bold; | |
font-size:15; | |
color:white; | |
} | |
.sidePanelContent { | |
padding-left: 10px; | |
padding-right: 10px; | |
padding-top: 5px; | |
padding-bottom: 5px; | |
background:Peru; | |
border-bottom-left-radius: 10px 10px; | |
border-bottom-right-radius: 10px 10px; | |
min-height: 40px; | |
color:white; | |
border-color: khaki; | |
border-style: solid; | |
border-width: 1px | |
} | |
.moduleTitle { | |
padding-left: 10px; | |
padding-top: 2px; | |
padding-bottom: 2px; | |
border-top-left-radius: 10px 10px; | |
border-top-right-radius: 10px 10px; | |
background:firebrick; | |
font-weight:bold; | |
font-size:15; | |
color: white; | |
} | |
.moduleContent { | |
padding-left: 10px; | |
padding-right: 10px; | |
padding-top: 5px; | |
padding-bottom: 5px; | |
border-bottom-left-radius: 10px 10px; | |
border-bottom-right-radius: 10px 10px; | |
background:sienna; | |
min-height: 40px; | |
color:white; | |
border-color: khaki; | |
border-style: solid; | |
border-width: 1px | |
} | |
.modules { | |
position:absolute; | |
right: 20%; | |
left: 20%; | |
font-family: monospace; | |
} | |
.moduleContent td { | |
border-width: 15px; | |
border-spacing: 20px; | |
border-style: solid; | |
border-color: Sienna; | |
border-collapse: collapse; | |
color: white; | |
} | |
body { | |
font-family: monospace; | |
color:white; | |
background:darkkhaki; | |
text-align:center; | |
} | |
a { | |
color:white; | |
} | |
input[type=text], input[type=password] { | |
font-family:courier; | |
border: 1px; | |
background-color:sienna; | |
color:white; | |
border-style:dotted; | |
} | |
pre { | |
white-space: pre-wrap; /* css-3 */ | |
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ | |
white-space: -pre-wrap; /* Opera 4-6 */ | |
white-space: -o-pre-wrap; /* Opera 7 */ | |
word-wrap: break-word; /* Internet Explorer 5.5+ */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment