123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- html {
- box-shadow: inset 0px 0px 150px 10px #333;
- height: 100%;
- background-color: #338;
- }
- label {
- font-size: .8em;
- }
- label, p {
- color: #ddd;
- text-shadow: -1px 1px 0px black;
- }
- #container {
- color: white;
- text-shadow: 1px 1px 2px black;
- margin: 0 auto;
- margin-top: 80px;
- text-align: center;
-
- min-width: 710px;
- max-width: 900px;
- padding: 50px 20px;
- background-color: darkred;
-
- box-shadow: inset 0px 0px 10px #777, inset 0px 0px 100px 10px black;
- box-shadow: 0px 0px 50px 0px green, inset 0px 0px 10px #777, inset 0px 0px 100px 10px black;
-
- border-radius: 5px;
-
- }
- h1 {
- color: green;
- text-shadow: 2px 1px 1px black, 2px 1px 15px orange;
- }
- #left, #right {
- width: 50%;
- min-height: 200px;
- }
- #right {
- float: right;
- }
- #left {
- float: left;
- }
- .clear {
- clear: both;
- }
- #choices li {
- list-style-type: none;
- cursor: pointer;
- font-weight: bold;
- }
- #choices li:hover {
- color: black;
- text-shadow: 1px 1px 2px cyan;
- }
- input {
- padding: 5px;
- }
- #rules {
- margin-top: 15px;
- margin: 0 auto;
- text-align: center;
- }
- #rules p {
- color: gray;
- font-size: .8em;
- }
|