diff options
Diffstat (limited to 'stylesheets/style2.css')
| -rw-r--r-- | stylesheets/style2.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/stylesheets/style2.css b/stylesheets/style2.css new file mode 100644 index 0000000..fbed7ef --- /dev/null +++ b/stylesheets/style2.css @@ -0,0 +1,51 @@ +body +{ + overflow-x: hidden; + max-width: 960px; + margin-left: auto; + margin-right: auto; +} + +li p { + margin: 0; +} + +img { + max-width: 100%; + height: auto; +} +@keyframes rainbow { + 0% {color: red} + 33% {color: lime} + 66% {color: blue} + 100% {color: red} +} +.visual { + background: linear-gradient(120deg, red, orange, yellow, green, blue, indigo, violet); + background-clip: text; + color: transparent; + /* animation: rainbow 1s linear infinite; */ +} + +.content { + /* padding-left: 3%; */ +} + +.box { + display: inline-block; +} + +.boxes { + display: flex; +} + + +/* +body::after { + position: fixed !important; + content: url(); + top: 0px !important; + right: 0 !important; + z-index:-1; + +} */ |
