PamGram/resources/bot/help/help.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
1.5 KiB
CSS
Raw Normal View History

2022-09-02 08:12:01 +00:00
:root {
--dark: #e0dad3;
--light: #f0ece8;
--white: #f5f5f5;
--grey: #6c6c6c;
}
2022-07-26 10:07:31 +00:00
body {
background-color: rgba(253, 253, 253, 0.75);
}
2022-09-02 08:12:01 +00:00
.header {
2023-04-26 08:48:05 +00:00
background-image: url(background/header.png);
2022-09-02 08:12:01 +00:00
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
2022-07-26 10:07:31 +00:00
}
2022-09-02 08:12:01 +00:00
.box {
border: 1px solid var(--dark);
background-color: var(--light);
2022-07-26 10:07:31 +00:00
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.command-title {
text-align: center;
2022-09-02 08:12:01 +00:00
line-height: 3rem;
border: 1px solid var(--dark);
2022-07-26 10:07:31 +00:00
}
.command-title h1 {
margin: 2px;
2022-09-02 08:12:01 +00:00
background-color: var(--dark);
2022-07-26 10:07:31 +00:00
}
.command {
flex: 1 1 0;
border-radius: 0.75rem;
2022-09-02 08:12:01 +00:00
padding: 0.3rem 0.5rem;
margin: 0.6rem;
background: var(--white);
border: 1px solid var(--dark);
2022-07-26 10:07:31 +00:00
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.command-background {
opacity: 0.1;
z-index: -1;
}
.command-background img {
margin-left: 400px;
margin-top: -10px;
position: absolute;
}
.genshin-background {
opacity: 0.3;
z-index: -1;
}
.genshin-background img {
margin-left: 150px;
margin-top: 100px;
position: absolute;
}
.command-name {
2022-09-02 08:12:01 +00:00
font-size: 1.5rem;
line-height: 2rem;
2022-07-26 10:07:31 +00:00
margin: 4px;
2022-09-02 08:12:01 +00:00
font-family: Menlo, ui-monospace, SFMono-Regular, Monaco, Consolas, Liberation Mono, Courier New, monospace;
display: flex;
justify-content: space-between;
}
.command-name i {
font-size: 1.2rem;
opacity: 0.4;
2022-07-26 10:07:31 +00:00
}
.command-description {
2022-09-02 08:12:01 +00:00
font-size: 1.2rem;
2022-07-26 10:07:31 +00:00
line-height: 1.5rem;
margin: 4px;
2022-09-02 08:12:01 +00:00
color: #6c6c6c;
2022-07-26 10:07:31 +00:00
}
.about {
2022-09-02 08:12:01 +00:00
background-color: var(--dark);
2022-07-26 10:07:31 +00:00
}