Files
darkshy.bronyfurry.com/css/style.css
DarkShyMW 623865805b modified: css/style.css
new file:   img/log.webp
	modified:   index.html
	modified:   sitemap.xml
2023-03-12 20:36:26 +03:00

72 lines
1.2 KiB
CSS

body {
background-color: rgb(87, 86, 86);
color: chartreuse;
font-family: monospace;
}
.header {
text-align: center;
}
#blink {
-webkit-animation: blink 1.5s linear infinite;
animation: blink 1.5s linear infinite;
}
@-webkit-keyframes blink {
50% { color: rgb(34, 34, 34); }
51% { color: rgba(34, 34, 34, 0); }
100% { color: rgba(34, 34, 34, 0); }
}
@keyframes blink {
50% { color: rgb(34, 34, 34); }
51% { color: rgba(34, 34, 34, 0); }
100% { color: rgba(34, 34, 34, 0); }
}
.dark {
color:rgb(0, 0, 0);
}
.shy {
color: red;
}
div.imagecenter {
margin: 0 auto;
width: 80em;
}
img.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.responsive {
width: 100%;
height: auto;
max-width: 400px;
}
p.outline {
--bd-example-padding: 1rem;
position: relative;
padding: var(--bd-example-padding);
margin: 0 -1.5rem;
border: solid var(--bs-border-color);
border-width: 1px 0;
}
a.github {
outline: none;
text-decoration: none;
padding: 2px 1px 0;
}
.darkshy_img {
float: right;
width: 30%;
text-align: center;
font-style: italic;
font-size: smaller;
text-indent: 0;
border: thin silver solid;
margin: 0.5em;
padding: 0.5em;
}