/css/iShudan.css
CSS | 140 lines | 116 code | 23 blank | 1 comment | 0 complexity | eb6ef6fd36adcfdf00f2645eb61af24d MD5 | raw file
1body { 2 font-size: 12px; 3 font-family: sans-serif; 4 font-weight: normal; 5 margin: 0; 6 padding: 0; 7} 8 9h1,h2,h3,h4,h5,h6 { 10 margin: 0 0 1em; 11 font-weight: bold; 12 background: #000; 13 color: #FFF; 14 padding: 0.2em; 15} 16 17.error { 18 color: #C00; 19 font-weight: bolder; 20} 21 22p { 23 margin: 1ex 2em; 24} 25 26a { 27 text-decoration: none; 28 font-weight: bold; 29 color: inherit; 30} 31 32a:before { 33 content: '[ '; 34} 35 36a:after { 37 content: ' ]'; 38} 39 40a:hover { 41 text-decoration: none; 42 color: #FFF; 43 background: #000; 44} 45 46label { 47 font-size: smaller; 48} 49 50table { 51 border: 1px solid #444; 52 border-collapse: collapse; 53 width: 95%; 54 margin: 1em auto; 55} 56 57td, 58th { 59 border: 1px solid #999; 60 padding: 2px 3px; 61} 62 63.game { 64 width: 45%; 65 float: left; 66 margin: 1em 2.4%; 67} 68 69.game tr[onclick]:hover { 70 cursor: pointer; 71 background: #DDD; 72} 73 74.game .alt { 75 background: #EEE; 76} 77 78.game .turn { 79 color: red; 80 font-weight: bold; 81} 82 83caption { 84 margin-bottom: 0; 85 padding-bottom: 0; 86 font-weight: bold; 87 font-size: smaller; 88} 89 90#footer { 91 position: absolute; 92 bottom: 0; 93 left: 2.5%; 94 text-align: center; 95 background: #000; 96 color: #FFF; 97 padding: 0.2em; 98 width: 95%; 99 font-size: smaller; 100} 101 102#footer a { 103 text-decoration: underline; 104} 105 106#footer a:before, 107#footer a:after, 108#links a:before, 109#links a:after { 110 content: ''; 111} 112 113#footer a:hover { 114 text-decoration: none; 115} 116 117.center { 118 text-align: center; 119} 120 121/* links stuff */ 122#links { 123 float: right; 124 margin: 5px 1em; 125 font-weight: bold; 126 color: #FFF; 127} 128 129#links a { 130 color: #DDD; 131 text-decoration: none; 132 padding: 0 0.5ex; 133} 134 135#links a:hover { 136 background: #DDD; 137 color: #000; 138 border: 1px solid #FFF; 139 margin: -1px; 140}