2021-03-02 17:03:29 +01:00
|
|
|
html {
|
2022-07-07 06:01:34 +02:00
|
|
|
background: #222;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
main {
|
2022-07-07 06:01:34 +02:00
|
|
|
background: #333;
|
|
|
|
border-radius: 10px;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
#tl > div {
|
|
|
|
padding: 16px;
|
2022-07-07 06:01:34 +02:00
|
|
|
border-bottom: 1px solid #c3c3c3;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|
|
|
|
#tl > div > header {
|
2022-07-07 06:01:34 +02:00
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
#misskey_app {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
body,
|
|
|
|
html {
|
|
|
|
background-color: #222;
|
|
|
|
color: #dfddcc;
|
|
|
|
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;
|
|
|
|
background: linear-gradient(90deg, rgb(134, 179, 0), rgb(74, 179, 0));
|
|
|
|
line-height: 50px;
|
|
|
|
color: #222;
|
2021-03-02 17:03:29 +01:00
|
|
|
font-weight: bold;
|
2022-07-07 06:01:34 +02:00
|
|
|
font-size: 20px;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
button:hover {
|
|
|
|
background: rgb(153, 204, 0);
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: rgb(134, 179, 0);
|
|
|
|
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;
|
|
|
|
color: #dfddcc;
|
|
|
|
margin-top: 3rem;
|
|
|
|
width: 20rem;
|
|
|
|
height: 5rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#text:focus {
|
|
|
|
border: solid #eee;
|
2021-03-02 17:03:29 +01:00
|
|
|
}
|