123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- @import url("webfont.css");
- html, body {
- background-color: black;
- color: white;
- font-family: "8-bit Operator Mono", Fixedsys, sans-serif;
- font-weight: normal;
- font-size: 24px;
- }
- #gamebox{
- width: 420px;
- margin: 40px auto;
- text-align: center;
- }
- #heartbox{
- width: 320px;
- margin: auto;
- padding: 4px;
- background-color: white;
- }
- canvas{
- background-color: black;
- }
- img.sans{
- position: relative;
- vertical-align: middle;
- }
- div#select_difficulty{
- transition: all 0.5s ease;
- overflow: hidden;
- height: 100px;
- margin: 20px 0px;
- }
- div#select_difficulty.closed{
- height: 0;
- margin: 0;
- }
- div#select_text{
- font-size: 16px;
- margin-bottom: 4px;
- }
- div.diff-option{
- text-align: left;
- position: relative;
- left: 24px;
- }
- div.diff-option.hidden{
- display: none;
- }
- div.diff-option::before{
- content: "*";
- position: absolute;
- left: -24px;
- }
- div.sel.diff-option::before{
- content: url('../img/heart.png');
- position: absolute;
- width: 16px;
- height: 16px;
- left: -24px;
- top: calc(50% - 7px);
- }
- div#gameplay_area{
- transition: all 0.5s ease;
- overflow: hidden;
- height: 180px;
- }
- div#gameplay_area.closed{
- height: 0;
- }
- div.stats{
- display: inline-block;
- text-align: left;
- width: 140px;
- white-space: nowrap;
- overflow: visible;
- font-size: 15px;
- font-family: "Mars Needs Cunnilingus", monospace;
- font-weight: normal;
- letter-spacing: 1px;
- }
- span.tag{
- font-family: Menlo, Consolas, sans-serif;
- font-size: 10px;
- }
- div#hp_bar{
- display: inline-block;
- position: relative;
- top: 3px;
- width: 20px;
- height: 15px;
- background-color: red;
- }
- div#hp_yellow_bar{
- position: absolute;
- width: 20px;
- height: 15px;
- background-color: yellow;
- }
- div#speech_bubble{
- position: relative;
- display: inline-block;
- vertical-align: middle;
- text-align: left;
- width: 160px;
- height: 100px;
- border-radius: 8px;
- padding: 8px;
- background-color: white;
- color: black;
- font-family: Comic Sans MS, "Comic Relief", sans-serif;
- font-size: 12px;
- font-weight: normal;
- transition: all 0.5s ease;
- }
- div#speech_bubble.closed{
- width: 0;
- padding: 8px 0;
- }
- div.bottom-credits{
- position: absolute;
- text-align: center;
- font-size: 12px;
- line-height: 15px;
- height: 48px;
- bottom: 0;
- left: calc(50% - 300px);
- width: 600px;
- padding: 8px 0;
- overflow: hidden;
- transition: all 0.3s ease;
- }
- div.bottom-credits span{
- display: inline-block;
- }
- div.bottom-credits:hover{
- height: 160px;
- }
- a{
- color: #00ffff;
- text-decoration: none;
- }
- a:hover{
- color: #33cccc;
- }
|