| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- *,
- *:after,
- *:before{
- box-sizing: inherit;
- padding:0;
- border:0;
- margin:0;
- }
- html{
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- font-weight: 300;
- }
- body{
- color: #eeeeee;
- background: #323232;
- font-family: Verdana, sans-serif;
- font-size: 16px;
- line-height: 140%;
- }
- div{
- text-align:center;
- }
- div.header{
- padding: 12px;
- }
- div.status{
- }
- div.canvas{
- }
- canvas{
- }
- input[type="checkbox"]{
- vertical-align: middle;
- }
- textarea{
- width:100%;
- position:absolute;
- opacity: .9;
- bottom:0;
- }
- a{
- color: #eeee00;
- text-decoration: none;
- cursor: pointer;
- }
- a:hover{
- color: #00ee00;
- }
- a.button{
- color: #ffffff;
- background-color: #4c4c4c;
- border: 1px solid #4c4c4c;
- border-radius: 3px;
- padding: 4px 7px;
- font-size: 11px;
- font-weight: 400;
- text-align: center;
- }
- a.button:hover{
- color: #ffff00;
- background-color: #888888;
- border-color: #888888;
- outline: 0;
- }
|