Last active
August 29, 2015 14:01
-
-
Save lkpttn/1389e6192f9cdca7999a to your computer and use it in GitHub Desktop.
DS-Form CSS
This file contains hidden or 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
| /* - - - - - - - - - - - - - - - - - - - - - | |
| Title : | |
| Author : | |
| URL : http:// | |
| Last Updated : | |
| - - - - - - - - - - - - - - - - - - - - - */ | |
| #logo a {background-image:url('../ds-logo.png'); min-height:0; height:150px} | |
| /* Backgrounds */ | |
| html { | |
| background-image:none; | |
| background-color:#4e2b63; | |
| } | |
| #logo { | |
| background-image:none; | |
| background-color:#4e2b63; | |
| } | |
| #container { | |
| background:#FFFFFF; | |
| box-shadow: 0px 0px 0px #000; | |
| -webkit-box-shadow: 0px 0px 0px #000; | |
| } | |
| .wufoo input.text, .wufoo textarea.textarea { | |
| background:#FFFFFF url(/images/fieldbg.gif) repeat-x top; | |
| } | |
| .wufoo .focused{ | |
| background:#FFF7C0; | |
| } | |
| .wufoo .instruct { | |
| background-color:#F5F5F5; | |
| } | |
| /* Borders */ | |
| #container{border:0 solid #cccccc} | |
| .wufoo .info{border-bottom:0px dotted #CCCCCC} | |
| .wufoo .instruct{border:0px solid #e6e6e6} | |
| /* Typography */ | |
| .wufoo .info h2 { | |
| font-size:3em; | |
| color:#23b7fb; | |
| font-weight: bold; | |
| font-family: sans-serif; | |
| } | |
| .wufoo .info div { | |
| font-size: 1em; | |
| font-family:sans-serif; | |
| color:#222; | |
| } | |
| .wufoo .section h3 { | |
| font-size:2em; | |
| font-weight: bold; | |
| font-family: sans-serif; | |
| color:#4e2b63; | |
| } | |
| .wufoo .section div { | |
| font-size:1em; | |
| font-family:sans-serif; | |
| color:#222; | |
| } | |
| .wufoo label.desc, .wufoo legend.desc { | |
| font-size:1.2em; | |
| font-family:sans-serif; | |
| color:#222; | |
| } | |
| .wufoo li div, .wufoo li div label, .wufoo li span label { | |
| font-family:sans-serif; | |
| color:#222; | |
| } | |
| .wufoo input.text, .wufoo textarea.textarea, .wufoo select.select, .wufoo label.choice { | |
| font-size:100%; | |
| font-family:sans-serif; | |
| color:#222; | |
| } | |
| .wufoo label.choice { | |
| color:#222; | |
| } | |
| .wufoo .instruct { | |
| font-size:1em; | |
| font-family:sans-serif; | |
| color:#222; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment