fix: ajusted indentation in css files
This commit is contained in:
parent
710336d881
commit
50e9bfdef6
|
@ -1,27 +1,27 @@
|
||||||
*::selection {
|
*::selection {
|
||||||
background: #c0c5ce;
|
background: #c0c5ce;
|
||||||
color: #1c1f26;
|
color: #1c1f26;
|
||||||
}
|
}
|
||||||
*::-moz-selection {
|
*::-moz-selection {
|
||||||
background: #c0c5ce;
|
background: #c0c5ce;
|
||||||
color: #1c1f26;
|
color: #1c1f26;
|
||||||
}
|
}
|
||||||
*::-webkit-selection {
|
*::-webkit-selection {
|
||||||
background: #c0c5ce;
|
background: #c0c5ce;
|
||||||
color: #1c1f26;
|
color: #1c1f26;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes blink {
|
@keyframes blink {
|
||||||
0% { opacity: 1.0; }
|
0% { opacity: 1.0; }
|
||||||
50% { opacity: 0.0; }
|
50% { opacity: 0.0; }
|
||||||
100% { opacity: 1.0; }
|
100% { opacity: 1.0; }
|
||||||
}
|
}
|
||||||
@-webkit-keyframes blink {
|
@-webkit-keyframes blink {
|
||||||
0% { opacity: 1.0; }
|
0% { opacity: 1.0; }
|
||||||
50% { opacity: 0.0; }
|
50% { opacity: 0.0; }
|
||||||
100% { opacity: 1.0; }
|
100% { opacity: 1.0; }
|
||||||
}
|
}
|
||||||
.blink {
|
.blink {
|
||||||
animation: blink 1s step-start 0s infinite;
|
animation: blink 1s step-start 0s infinite;
|
||||||
-webkit-animation: blink 1.5s step-start 0s infinite;
|
-webkit-animation: blink 1.5s step-start 0s infinite;
|
||||||
}
|
}
|
|
@ -1,65 +1,65 @@
|
||||||
* {
|
* {
|
||||||
scrollbar-color: #202324 #454a4d;
|
scrollbar-color: #202324 #454a4d;
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
background-color: #232830;
|
background-color: #232830;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Lora', serif;
|
font-family: 'Lora', serif;
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
max-width: 40em;
|
max-width: 40em;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, a {
|
body, a {
|
||||||
color: #c0c5ce;
|
color: #c0c5ce;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
text-decoration-color: #283593;
|
text-decoration-color: #283593;
|
||||||
text-decoration-thickness: 2px;
|
text-decoration-thickness: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
text-decoration-color: #5f5fc4;
|
text-decoration-color: #5f5fc4;
|
||||||
text-decoration-thickness: 2px;
|
text-decoration-thickness: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin-bottom: .7em;
|
margin-bottom: .7em;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 1.9em;
|
font-size: 1.9em;
|
||||||
margin-bottom: .7em;
|
margin-bottom: .7em;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol, ul {
|
ol, ul {
|
||||||
margin: .7em 0 0 1.3em;
|
margin: .7em 0 0 1.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-top: 1px dashed #d2d2d2;
|
border-top: 1px dashed #d2d2d2;
|
||||||
height: 0;
|
height: 0;
|
||||||
margin: 1.6em 0;
|
margin: 1.6em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
margin: 1.3em 0 2em;
|
margin: 1.3em 0 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blink {
|
.blink {
|
||||||
margin-left: -5px;
|
margin-left: -5px;
|
||||||
}
|
}
|
Reference in a new issue