Files
darkshy.bronyfurry.com/css/style.css
DarkShy 1dab1a9b1f Changes to be committed:
modified:   css/style.css
modified:   index.html
2023-01-14 15:20:54 +03:00

56 lines
990 B
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;
}