2020-07-19 16:51:54 +00:00
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2020-07-25 18:28:42 +00:00
|
|
|
font-family: 'Roboto Mono', monospace;
|
2020-07-19 16:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
2020-07-18 16:40:51 +00:00
|
|
|
body {
|
2020-07-19 16:51:54 +00:00
|
|
|
background: #121212;
|
|
|
|
|
|
2020-07-18 23:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
2020-07-20 14:09:03 +00:00
|
|
|
.headers {
|
2020-07-19 20:01:03 +00:00
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 3vh;
|
2020-07-19 17:36:21 +00:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 14:09:03 +00:00
|
|
|
.title:link {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
text-decoration: none;
|
2020-07-19 17:36:21 +00:00
|
|
|
font-size: 50px;
|
2020-07-20 14:09:03 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 14:16:34 +00:00
|
|
|
.title:visited {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 14:09:03 +00:00
|
|
|
.title:hover {
|
|
|
|
|
color: #7b59a5;
|
2020-07-19 17:36:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.desc {
|
2020-08-20 09:43:52 +03:00
|
|
|
font-size: 25px;
|
|
|
|
|
font-weight: bold;
|
2020-07-19 20:01:03 +00:00
|
|
|
color: #ffffff;
|
2020-07-19 17:36:21 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-20 09:43:52 +03:00
|
|
|
.url-form {
|
2020-08-20 10:17:01 +03:00
|
|
|
position: relative;
|
2020-07-25 18:43:32 +00:00
|
|
|
z-index: 100;
|
2020-07-19 16:51:54 +00:00
|
|
|
background-color: #2c2c2c;
|
|
|
|
|
border-radius: 8px;
|
2020-08-20 09:43:52 +03:00
|
|
|
padding: 30px;
|
2020-07-19 16:51:54 +00:00
|
|
|
box-shadow: 0px 10px 20px #000000;
|
2020-08-20 09:43:52 +03:00
|
|
|
margin: 35vh 10vw 0 10vw;
|
2020-07-19 16:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-20 09:43:52 +03:00
|
|
|
.input-list {
|
|
|
|
|
width: 100%;
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
2020-07-18 23:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.url {
|
2020-08-20 09:43:52 +03:00
|
|
|
width: 80%;
|
|
|
|
|
padding: 10px;
|
2020-07-19 16:51:54 +00:00
|
|
|
background: #121212;
|
|
|
|
|
border: 2px solid #bb86fc;
|
|
|
|
|
color: #ffffff;
|
2020-08-20 09:43:52 +03:00
|
|
|
margin-bottom: 2vh;
|
2020-07-18 23:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.url:focus {
|
2020-07-19 16:51:54 +00:00
|
|
|
border-color: #7b59a5;
|
2020-07-18 23:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-21 12:17:17 +03:00
|
|
|
.token {
|
|
|
|
|
width: 80%;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background: #121212;
|
|
|
|
|
border: 2px solid #bb86fc;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
margin-bottom: 2vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.token:focus {
|
|
|
|
|
border-color: #7b59a5;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 14:09:03 +00:00
|
|
|
.button {
|
2020-08-20 09:43:52 +03:00
|
|
|
width: 100px;
|
2020-07-19 16:51:54 +00:00
|
|
|
background: #bb86fc;
|
|
|
|
|
border: 2px solid #bb86fc;
|
|
|
|
|
border-radius: 3px;
|
2020-08-20 09:43:52 +03:00
|
|
|
padding: 10px;
|
2020-07-19 16:51:54 +00:00
|
|
|
color: #000000;
|
2020-07-25 19:27:59 +00:00
|
|
|
font-weight: bold;
|
2020-07-18 16:40:51 +00:00
|
|
|
}
|
2020-07-18 23:39:18 +00:00
|
|
|
|
2020-07-20 14:09:03 +00:00
|
|
|
.button:hover {
|
2020-07-19 16:51:54 +00:00
|
|
|
background: #7b59a5;
|
|
|
|
|
border-color: #7b59a5;
|
|
|
|
|
}
|
2020-07-19 20:01:03 +00:00
|
|
|
|
2020-08-21 12:17:17 +03:00
|
|
|
.form-error-message {
|
2020-07-19 20:01:03 +00:00
|
|
|
color: #ffffff;
|
2020-08-21 12:17:17 +03:00
|
|
|
list-style: none;
|
2020-07-19 20:01:03 +00:00
|
|
|
text-align: center;
|
2020-08-20 09:43:52 +03:00
|
|
|
margin: -1vh 0 2vh 0;
|
2020-07-19 20:01:03 +00:00
|
|
|
}
|
2020-07-19 21:52:15 +00:00
|
|
|
|
2020-08-21 12:17:17 +03:00
|
|
|
.token-explanation {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 2vh;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-22 15:36:09 +03:00
|
|
|
.click-tracker {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 5vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.click-tracker a:link {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.click-tracker a:visited {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.click-tracker a:hover {
|
|
|
|
|
color: #7b59a5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clicks-list {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 30vh 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clicks-number {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
font-size: 125px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clicks-text {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 17:51:52 +00:00
|
|
|
.error-message {
|
|
|
|
|
text-align: center;
|
2020-08-20 09:43:52 +03:00
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 50px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin: 35vh auto 0 auto;
|
2020-07-20 17:51:52 +00:00
|
|
|
}
|
|
|
|
|
|
2020-07-23 18:26:18 +00:00
|
|
|
.donation {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
2020-08-07 10:50:56 +03:00
|
|
|
margin: 30vh auto 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-20 09:43:52 +03:00
|
|
|
.donation-title {
|
|
|
|
|
font-size: 40px;
|
|
|
|
|
font-weight: bold;
|
2020-08-07 10:50:56 +03:00
|
|
|
margin-bottom: 2vh;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-20 09:43:52 +03:00
|
|
|
.donation-patreon {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 5vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.donation-bitcoin {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bold;
|
2020-08-07 10:50:56 +03:00
|
|
|
}
|
|
|
|
|
|
2020-08-18 12:20:07 +03:00
|
|
|
.donation a:link {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
text-decoration: none;
|
2020-07-23 18:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-18 12:20:07 +03:00
|
|
|
.donation a:visited {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.donation a:hover {
|
|
|
|
|
color: #7b59a5;
|
|
|
|
|
}
|
2020-07-23 18:26:18 +00:00
|
|
|
|
2020-07-19 21:52:15 +00:00
|
|
|
.page-container {
|
2020-08-20 10:17:01 +03:00
|
|
|
position: relative;
|
|
|
|
|
min-height: 100vh;
|
2020-07-19 21:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-wrap {
|
2020-08-20 10:17:01 +03:00
|
|
|
padding-bottom: 2.5rem;
|
2020-07-19 21:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer {
|
2020-08-20 10:17:01 +03:00
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
margin-bottom: 5vh;
|
2020-07-19 21:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-list li {
|
|
|
|
|
color: #ffffff;
|
2020-07-23 18:26:18 +00:00
|
|
|
display: inline;
|
2020-07-19 21:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-18 12:20:07 +03:00
|
|
|
.footer-list a:link {
|
2020-07-19 21:52:15 +00:00
|
|
|
color: #bb86fc;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-18 12:20:07 +03:00
|
|
|
.footer-list a:visited {
|
2020-07-23 18:26:18 +00:00
|
|
|
color: #bb86fc;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-18 12:20:07 +03:00
|
|
|
.footer-list a:hover {
|
2020-07-19 21:52:15 +00:00
|
|
|
color: #7b59a5;
|
|
|
|
|
}
|
2020-07-25 19:27:59 +00:00
|
|
|
|
|
|
|
|
.copyright {
|
|
|
|
|
font-family: serif;
|
|
|
|
|
}
|