2021-03-02 17:03:29 +01:00
|
|
|
main > .tabs {
|
|
|
|
padding: 16px;
|
2022-07-24 06:23:04 +02:00
|
|
|
border-bottom: 4px solid #908caa;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
#lsEditor > .adder {
|
|
|
|
margin: 16px;
|
|
|
|
padding: 16px;
|
2022-07-24 06:23:04 +02:00
|
|
|
border: 2px solid #908caa;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
#lsEditor > .adder > textarea {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 5em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#lsEditor > .record {
|
|
|
|
padding: 16px;
|
2022-07-24 06:23:04 +02:00
|
|
|
border-bottom: 1px solid #908caa;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
#lsEditor > .record > header {
|
2022-07-07 06:10:31 +02:00
|
|
|
font-weight: 700;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
#lsEditor > .record > textarea {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 5em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-07-07 06:10:31 +02:00
|
|
|
|
|
|
|
html {
|
2022-07-24 06:23:04 +02:00
|
|
|
background: #191724;
|
2022-07-07 06:10:31 +02:00
|
|
|
}
|
|
|
|
main {
|
2022-07-24 06:23:04 +02:00
|
|
|
background: #1f1d2e;
|
2022-07-07 06:10:31 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
#tl > div {
|
|
|
|
padding: 16px;
|
2022-07-24 06:23:04 +02:00
|
|
|
border-bottom: 1px solid #908caa;
|
2022-07-07 06:10:31 +02:00
|
|
|
}
|
|
|
|
#tl > div > header {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
#misskey_app {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
body,
|
|
|
|
html {
|
2022-07-24 06:23:04 +02:00
|
|
|
background-color: #191724;
|
|
|
|
color: #e0def4;
|
2022-07-07 06:10:31 +02:00
|
|
|
justify-content: center;
|
|
|
|
margin: auto;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
border-radius: 999px;
|
|
|
|
padding: 0px 12px 0px 12px;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 12px;
|
2022-07-24 06:23:04 +02:00
|
|
|
background: linear-gradient(90deg, rgb(156, 207, 216), rgb(74, 179, 0));
|
2022-07-07 06:10:31 +02:00
|
|
|
line-height: 50px;
|
2022-07-24 06:23:04 +02:00
|
|
|
color: #191724;
|
2022-07-07 06:10:31 +02:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
border-radius: 999px;
|
|
|
|
padding: 0px 12px 0px 12px;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
background: #444;
|
|
|
|
line-height: 40px;
|
2022-07-24 06:23:04 +02:00
|
|
|
color: rgb(156, 207, 216);
|
2022-07-07 06:10:31 +02:00
|
|
|
font-size: 16px;
|
2022-07-07 06:39:41 +02:00
|
|
|
padding: 0 20px;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
|
2022-07-07 06:10:31 +02:00
|
|
|
}
|
|
|
|
button:hover {
|
|
|
|
background: #555;
|
|
|
|
}
|
|
|
|
#ls {
|
2022-07-24 06:23:04 +02:00
|
|
|
background: linear-gradient(90deg, rgb(156, 207, 216), rgb(74, 179, 0));
|
2022-07-07 06:39:41 +02:00
|
|
|
line-height: 30px;
|
2022-07-24 06:23:04 +02:00
|
|
|
color: #191724;
|
2022-07-07 06:10:31 +02:00
|
|
|
font-weight: bold;
|
2022-07-07 06:39:41 +02:00
|
|
|
font-size: 18px;
|
2022-07-07 06:10:31 +02:00
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
#ls:hover {
|
2022-07-24 06:23:04 +02:00
|
|
|
background: rgb(156, 207, 216);
|
2022-07-07 06:10:31 +02:00
|
|
|
}
|
|
|
|
a {
|
2022-07-24 06:23:04 +02:00
|
|
|
color: rgb(156, 207, 216);
|
2022-07-07 06:10:31 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
p,
|
|
|
|
li {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
code {
|
|
|
|
font-family: Fira, FiraCode, monospace;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
background-color: #444;
|
|
|
|
border: solid #aaa;
|
|
|
|
border-radius: 10px;
|
2022-07-24 06:23:04 +02:00
|
|
|
color: #e0def4;
|
2022-07-07 06:10:31 +02:00
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
width: 20rem;
|
2022-07-07 06:39:41 +02:00
|
|
|
height: 7.5rem;
|
2022-07-07 06:10:31 +02:00
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea:focus {
|
|
|
|
border: solid #eee;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
background-color: #666;
|
|
|
|
border: solid #aaa;
|
|
|
|
border-radius: 10px;
|
2022-07-24 06:23:04 +02:00
|
|
|
color: #e0def4;
|
2022-07-07 06:10:31 +02:00
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
width: 10rem;
|
|
|
|
height: 1rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus {
|
|
|
|
border: solid #eee;
|
|
|
|
}
|