telegram-node-bot
Version:
Module for creating Telegram bots.
77 lines (68 loc) • 1.2 kB
CSS
body {
margin: 0px;
background-color: #080808;
color: #ffffff;
animation: start 0.5s;
font-family: 'Open Sans', sans-serif;
}
.logs {
width: 100%;
height: 500px;
display: block;
margin-bottom: 25px;
}
textarea {
margin-top: 25px;
background-color: #080808;
border: 1px #2F9ED9 solid;
border-radius: 5px;
padding: 10px;
height: 50px;
display: block;
color: #ffffff;
outline: none;
}
button {
color: #ffffff;
background-color: #00b7ff;
padding: 10px 15px;
border: 1px solid #00b7ff;
border-radius: 50px;
cursor: pointer;
outline: none;
}
@keyframes start {
0% {
transform: scale(0.7, 0.7);
}
100% {
transform: scale(1, 1);
}
}
#health {
margin-top: 25px;
text-align: center;
border: solid 1px #2F9ED9;
border-radius: 5px;
margin-bottom: 25px;
font-size: small;
padding: 10px;
}
.content {
width: 100%;
max-width: 500px;
margin: 0 auto;
text-align: center;
padding: 10px;
padding-top: 20px;
}
* {
box-sizing: border-box;
}
.health-wrap {
margin: 0 auto;
max-width: 300px;
}
a {
color: #ffffff;
}