iceshrimp/packages/backend/src/server/web/cli.css

93 lines
1.3 KiB
CSS
Raw Normal View History

2021-03-02 17:03:29 +01:00
html {
2022-07-24 06:23:04 +02:00
background: #191724;
2021-03-02 17:03:29 +01:00
}
main {
2022-07-24 06:23:04 +02:00
background: #1f1d2e;
2022-07-07 06:01:34 +02:00
border-radius: 10px;
2021-03-02 17:03:29 +01:00
}
#tl > div {
2023-03-19 09:59:33 +01:00
border: 1px solid #908caa;
border-radius: 10px;
margin: 10px;
padding: 10px;
width: fit-content;
2021-03-02 17:03:29 +01:00
}
#tl > div > header {
2022-07-07 06:01:34 +02:00
font-weight: 700;
2023-03-19 10:08:08 +01:00
display: inline-flex;
2022-07-07 06:01:34 +02:00
}
2023-03-19 09:59:33 +01:00
img {
border-radius: 10px;
margin-right: 10px;
}
#form {
text-align: center;
}
#iceshrimp_app {
2022-07-07 06:01:34 +02:00
display: none !important;
}
2023-03-19 10:08:08 +01:00
2022-07-07 06:01:34 +02:00
body,
html {
2023-03-19 10:08:08 +01:00
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
2022-07-24 06:23:04 +02:00
background-color: #191724;
color: #e0def4;
2022-07-07 06:01:34 +02:00
justify-content: center;
margin: auto;
padding: 10px;
}
button {
2022-07-07 06:13:32 +02:00
border-radius:999px;
padding:0 40px;
margin-top: 1rem;
border:none;
cursor:pointer;
margin-bottom:12px;
2022-07-25 03:36:55 +02:00
background:linear-gradient(90deg,#9ccfd8,#31748f);
2022-07-07 06:13:32 +02:00
line-height:50px;
2022-07-24 06:23:04 +02:00
color:#191724;
2022-07-07 06:13:32 +02:00
font-weight:700;
font-size:20px;
}
2022-07-07 06:01:34 +02:00
button:hover {
2022-07-24 06:23:04 +02:00
background: rgb(156, 207, 216);
2022-07-07 06:01:34 +02:00
}
a {
2022-07-24 06:23:04 +02:00
color: rgb(156, 207, 216);
2022-07-07 06:01:34 +02:00
text-decoration: none;
}
p,
li {
font-size: 16px;
}
h1 {
font-size: 32px;
}
code {
font-family: Fira, FiraCode, monospace;
}
#text {
background-color: #444;
border: solid #aaa;
border-radius: 10px;
2022-07-24 06:23:04 +02:00
color: #e0def4;
2022-07-07 06:01:34 +02:00
margin-top: 3rem;
width: 20rem;
height: 5rem;
padding: 0.5rem;
}
#text:focus {
border: solid #eee;
2021-03-02 17:03:29 +01:00
}
2022-07-07 08:23:37 +02:00
@media screen and (max-width: 500px) {
#text {
width: 80%
}
}