armcord/manager.html

92 lines
1.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2021-05-14 19:47:01 +00:00
<head>
<meta charset="UTF-8" />
2021-05-21 17:33:11 +00:00
<title>ArmCord Manager</title>
2021-05-14 19:47:01 +00:00
<style>
@import url("https://kckarnige.github.io/femboi_owo/discord-font.css");
2021-05-14 19:47:01 +00:00
:root {
background-color: #2c2f33;
--header-secondary: #b9bbbe;
--header-primary: #fff;
--background-tertiary: #202225;
}
2021-05-14 19:47:01 +00:00
body {
color: white;
}
2021-05-14 19:47:01 +00:00
p {
color: white;
}
2021-05-14 19:47:01 +00:00
h1 {
font-size: 0px;
text-align: center;
transform: translateY(-105%);
}
.logo:before {
2021-05-14 19:47:01 +00:00
content: "ARM";
color: #7289da;
font-weight: normal;
font-family: Helvetica, sans-serif;
}
2021-05-14 19:47:01 +00:00
span {
text-align: center;
}
2021-05-14 19:47:01 +00:00
.logo {
color: #ffffff;
font-weight: normal;
font-family: Discordinated;
font-size: 32px;
text-align: center;
2021-05-14 19:47:01 +00:00
}
2021-05-14 19:47:01 +00:00
.container {
position: fixed;
top: 50%;
left: 50%;
color: #fff;
transform: translate(-50%, -50%);
}
button.back-btn {
position: absolute;
background-color: #7289da;
font-family: Whitney,"Helvetica Neue",Helvetica,Arial,sans-serif;
color: #ffffff;
padding: 4px;
border-radius: 5px;
width: 105px;
height: 25px;
margin-top: 5px;
margin-left: 5px;
text-align: center;
border-style: none;
outline: none;
}
button.back-btn:hover {
background-color: #687dc6;
border-style: none;
outline: none;
cursor: pointer;
}
button.back-btn:active {
background-color: #5c6fb1;
}
2021-05-14 19:47:01 +00:00
</style>
</head>
2021-05-14 19:47:01 +00:00
<body>
<a href="https://discord.com/app"><button class="back-btn">Back to Discord</button></a>
2021-05-21 17:33:11 +00:00
<p class="logo">Cord Manager</p>
2021-05-14 19:47:01 +00:00
<div id="tm-list"></div>
</body>
</html>