diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..7db07b2 --- /dev/null +++ b/css/style.css @@ -0,0 +1,31 @@ +body { + background-color: rgb(58, 58, 58); + 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; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..992e1e4 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + DarkShy - main page + + + + + + + + + + + +

DarkShy

+

Просто серая пегаска..|

+ + \ No newline at end of file