mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
71 lines
1.3 KiB
HTML
71 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>ArmCord Theme Manager</title>
|
|
<style>
|
|
@import url("https://kckarnige.github.io/femboi_owo/discord-font.css");
|
|
|
|
:root {
|
|
background-color: #2c2f33;
|
|
--header-secondary: #b9bbbe;
|
|
--header-primary: #fff;
|
|
--background-tertiary: #202225;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
}
|
|
|
|
p {
|
|
color: white;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 0px;
|
|
text-align: center;
|
|
transform: translateY(-105%);
|
|
}
|
|
|
|
h1:before {
|
|
content: "ARM";
|
|
color: #7289da;
|
|
font-weight: normal;
|
|
font-family: Helvetica, sans-serif;
|
|
font-size: 32px;
|
|
}
|
|
|
|
h1:after {
|
|
content: "Cord";
|
|
color: #ffffff;
|
|
font-weight: normal;
|
|
font-family: Discordinated;
|
|
font-size: 32px;
|
|
}
|
|
|
|
span {
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
color: #ffffff;
|
|
font-weight: normal;
|
|
font-family: Discordinated;
|
|
font-size: 32px;
|
|
}
|
|
|
|
.container {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
color: #fff;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p class="logo">Theme Manager</p>
|
|
<div id="tm-list"></div>
|
|
</body>
|
|
</html>
|