Skip to content

Instantly share code, notes, and snippets.

@EricZhang456
Created May 23, 2020 04:07
Show Gist options
  • Save EricZhang456/4ca4c66aa411eb0050f478322bbfdc87 to your computer and use it in GitHub Desktop.
Save EricZhang456/4ca4c66aa411eb0050f478322bbfdc87 to your computer and use it in GitHub Desktop.
VidLii Ugly™ PLUS!
@-moz-document domain("vidlii.com") {
@-webkit-keyframes bg-color {
0% { background-color: #e74c3c; }
20% { background-color: #f1c40f; }
40% { background-color: #1abc9c; }
60% { background-color: #3498db; }
80% { background-color: #9b59b6; }
100% { background-color: #e74c3c; }
}
@keyframes bg-color {
0% { background-color: #e74c3c; }
20% { background-color: #f1c40f; }
40% { background-color: #1abc9c; }
60% { background-color: #3498db; }
80% { background-color: #9b59b6; }
100% { background-color: #e74c3c; }
}
body {
overflow-y: scroll;
margin: 0;
font-size: 16px;
min-width: 1000px;
font-family: "Comic Sans MS",sans-serif;
text-align: right;
/* background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%); */
background-color: #e74c3c;
animation: bg-color 10s infinite;
-webkit-animation: bg-color 0.2s infinite;
}
a {
color: white;
background-image: repeating-linear-gradient(-45deg,
transparent,
transparent 25px,
rgba(255,255,255,1) 25px,
rgba(255,255,255,1) 50px);
text-decoration: none;
}
a:hover {
color: black;
background: repeating-linear-gradient(0deg, #00f, #0f0 40%, red);;
}
.search_bar {
border: 1px solid wheat;
padding: 3px 4px;
width: 275px;
border-radius: 3px;
outline: 0;
background: linear-gradient(to right top, blue, red);;
}
h1,h2,h3,h4,h5,h6,.whats_new{
background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
color:#e74c3c;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment