mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Fixed up the theme menu CSS and removed "Download Discord" popup
This commit is contained in:
parent
7fe38ad307
commit
df83567d99
2 changed files with 34 additions and 11 deletions
|
@ -75,6 +75,9 @@ div.menubar[role="menubar"] {
|
||||||
.titlebar .window-controls-container .window-icon {
|
.titlebar .window-controls-container .window-icon {
|
||||||
background: var(--window-buttons) !important;
|
background: var(--window-buttons) !important;
|
||||||
}
|
}
|
||||||
|
.notice-3bPHh-.colorDefault-22HBa0 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
`);
|
`);
|
||||||
|
|
||||||
ArmCord.addStyle(
|
ArmCord.addStyle(
|
||||||
|
|
42
theme.html
42
theme.html
|
@ -27,20 +27,11 @@
|
||||||
transform: translateY(-105%);
|
transform: translateY(-105%);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1:before {
|
.logo:before {
|
||||||
content: "ARM";
|
content: "ARM";
|
||||||
color: #7289da;
|
color: #7289da;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-family: Helvetica, sans-serif;
|
font-family: Helvetica, sans-serif;
|
||||||
font-size: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1:after {
|
|
||||||
content: "Cord";
|
|
||||||
color: #ffffff;
|
|
||||||
font-weight: normal;
|
|
||||||
font-family: Discordinated;
|
|
||||||
font-size: 32px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
|
@ -52,6 +43,7 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-family: Discordinated;
|
font-family: Discordinated;
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
|
@ -61,11 +53,39 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
transform: translate(-50%, -50%);
|
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;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<p class="logo">Theme Manager</p>
|
<a href="https://discord.com/app"><button class="back-btn">Back to Discord</button></a>
|
||||||
|
<p class="logo">Cord Theme Manager</p>
|
||||||
<div id="tm-list"></div>
|
<div id="tm-list"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue