hgman/styles.css

61 lines
921 B
CSS
Raw Normal View History

2021-02-24 22:45:09 +03:00
/* http://paletton.com/#uid=13w0u0kllllaFw0g0qFqFg0w0aF */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
2017-02-26 01:29:28 +03:00
2017-02-17 04:34:12 +03:00
* {
margin: 0; padding: 0; outline: 0;
}
body {
color: #032137;
background-color: #29516D;
2017-02-26 02:04:29 +03:00
font-family: 'Play';
2017-02-17 04:34:12 +03:00
font-size: 32px;
}
.wrap {
max-width: 400px;
margin: 10px auto;
}
div.word {
padding: 8px;
border-top: 1px solid #032137;
}
div.lives {
font-size: 24px;
}
div.word, div.lives {
text-align: center;
}
div.keyboard {
text-align: center;
}
div.keyboard button {
color: #032137;
2017-02-26 02:04:29 +03:00
font-family: 'Play';
2017-02-17 04:34:12 +03:00
border-radius: 4px;
font-size: 16px;
background-color: #708EA4;
padding: 8px;
border: 1px solid #032137;
box-sizing: border-box;
margin: 2px;
}
div.keyboard button:disabled {
opacity: 0.5;
}
footer {
border-top: 1px solid #032137;
padding: 8px;
margin-top: 20px;
text-align: center;
font-size: 16px;
}