| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- html {
- background: url(Images/background-4-full.jpg) #F7F7F7;
- background-size: cover;
- padding: 0;
- }
- .contrastText {
- color: white;
- text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
- }
- .outerCenterWrapper {
- margin: 120px auto 0;
- width: 400px;
- font-size: 22px;
- border: 1px solid #009688;
- padding: 24px;
- text-align: center;
- /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.8+1,0.8+100 */
- background: -moz-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 1%, rgba(255,255,255,0.8) 100%); /* FF3.6-15 */
- background: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.8) 1%,rgba(255,255,255,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
- background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.8) 1%,rgba(255,255,255,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccffffff', endColorstr='#ccffffff',GradientType=0 ); /* IE6-9 */
- -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
- -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
- box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
- border-radius: 8px 8px 8px 8px;
- -moz-border-radius: 8px 8px 8px 8px;
- -webkit-border-radius: 8px 8px 8px 8px;
- border: 0px solid #000000;
- }
- .outerCenterWrapper h2 {
- font-size: 1.2em;
- text-transform: uppercase;
- }
- .innerCenterWrapper {
- margin: 0 auto;
- width: 260px;
- opacity: 1.0;
- }
- .innerCenterWrapper h4 {
- font-weight: normal;
- }
- .fieldContainer {
- width: 100%;
- overflow: auto;
- margin: 16px 0;
- }
- .fieldContainer > img {
- float: left;
- margin-top: 4px;
- margin-right: 12px;
- }
|