updated on - Mon Jun 26 12:18:31 UTC 2023

This commit is contained in:
GitHub Action 2023-06-26 12:18:31 +00:00
parent 4e196eb6b6
commit c02c3dd919

View File

@ -1,30 +1,28 @@
:root {
--color-bg: #FFFFF5;
--color-text: #000;
--gap-l: 2.5rem;
}
body {
margin: var(--gap-l) auto;
max-width: 610px;
margin: 2.5rem auto;
max-width: 700px;
line-height: 1.6;
background: var(--color-bg);
color: var(--color-text);
padding: 0 10px;
background: #fffff5;
color: #000;
padding-inline: 1rem;
line-height: 28px;
font-family: "Lora";
font-weight: 500;
box-sizing: border-box;
/* Smooth the font a little bit, it's a
bit too bold on retina screens */
-webkit-font-smoothing: antialiased;
font-display: swap;
}
body::selection {
color: #fffff5;
background: #a4aeb6;
}
.timestamp {
color: #333333;
}
/* --------------------------------------------------- */
/* Make a nice input form with rounded corners and hover
animations*/
* *animations */
/* --------------------------------------------------- */
input {
padding: 10px 16px;
@ -35,7 +33,6 @@ input {
background: #fffff4;
color: #3a1616;
font-size: 16px;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
}
@ -69,34 +66,33 @@ input:focus {
/* ----------------------------------------------- */
/* Various classes for messages of different kinds */
/* ----------------------------------------------- */
.isa_info,
.isa_success,
.isa_warning,
.isa_error {
.isa_info, .isa_success, .isa_warning, .isa_error {
width: 90%;
margin: 10px 0px;
padding: 12px;
}
.isa_info {
color: #00529b;
background-color: #bde5f8;
}
.isa_success {
color: #4f8a10;
background-color: #dff2bf;
}
.isa_warning {
color: #9f6000;
background-color: #feefb3;
}
.isa_error {
color: #d8000c;
background-color: #ffd2d2;
}
h1,
h2,
h3 {
h1, h2, h3 {
line-height: 1.2;
font-family: "Lora";
}
@ -115,7 +111,7 @@ a {
cursor: pointer;
color: #217ab7;
line-height: inherit;
transition: .14s;
transition: 0.14s;
}
a:hover {
color: white;
@ -134,7 +130,4 @@ pre {
font-family: "Inconsolata", monospace;
}
::selection {
color: white;
background: #ff4081;
}
/*# sourceMappingURL=light.css.map */