2020-07-19 16:51:54 +00:00
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
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-07-19 20:01:03 +00:00
|
|
|
color: #ffffff;
|
2020-07-19 17:36:21 +00:00
|
|
|
}
|
|
|
|
|
|
2020-07-19 16:51:54 +00:00
|
|
|
.container {
|
2020-07-19 20:01:03 +00:00
|
|
|
position: absolute;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2020-07-19 16:51:54 +00:00
|
|
|
background-color: #2c2c2c;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 30px 0px;
|
|
|
|
|
box-shadow: 0px 10px 20px #000000;
|
|
|
|
|
width: 80vw;
|
|
|
|
|
height: auto;
|
2020-07-19 20:01:03 +00:00
|
|
|
margin: 35vh auto 0 auto;
|
2020-07-19 16:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inputs {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2020-07-18 23:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.url {
|
2020-07-19 16:51:54 +00:00
|
|
|
background: #121212;
|
|
|
|
|
border: 2px solid #bb86fc;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
width: 60%;
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
margin-left: 3%;
|
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-07-20 14:09:03 +00:00
|
|
|
.button {
|
2020-07-19 16:51:54 +00:00
|
|
|
background: #bb86fc;
|
|
|
|
|
border: 2px solid #bb86fc;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
display: inline-block;
|
2020-07-19 17:36:21 +00:00
|
|
|
padding: 0 1% 0 1%;
|
2020-07-19 16:51:54 +00:00
|
|
|
margin: 0 3% 0 1%;
|
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
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
padding: 0;
|
2020-07-19 22:14:49 +00:00
|
|
|
margin: 3% 0 0 0;
|
2020-07-19 20:01:03 +00:00
|
|
|
}
|
2020-07-19 21:52:15 +00:00
|
|
|
|
|
|
|
|
.page-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-wrap {
|
|
|
|
|
padding-bottom: 2.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
margin-bottom: 5vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-list li {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-list li a:link {
|
|
|
|
|
color: #bb86fc;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-list li a:hover {
|
|
|
|
|
color: #7b59a5;
|
|
|
|
|
}
|