-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoring CSS Snippets.css
87 lines (66 loc) · 1.46 KB
/
Boring CSS Snippets.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* Pivote légèrement l'écran
Slightly rotates the screen */
* {
transform: rotate(0.025deg);
}
/* Modifie les polices en une meilleure police
Change fonts to a better font */
* {
font-family: "Comic Sans MS"!important;
}
/* Changer la couleur des liens en couleur "Barbie"
Change links colors to "Barbie" color */
a {
color: #FF69B4!important;
}
/* Avez-vous déjà vu un site internet sous LSD ?
Have you ever seen a website using LSD ? */
img {
animation: AlbertHofmann 10s alternate infinite;
}
@keyframes AlbertHofmann {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
/* Pour les vieux qui disent "C'était mieux avant"
For the old folks who say "It was better before" */
html {
filter: grayscale(100%);
}
/* Pas de mauvaises blague à ce sujet
No bad joke about it */
* {
animation: Hiroshima 0.05s infinite alternate;
}
@keyframes Hiroshima {
0% {
transform: rotate(-0.5deg);
}
100% {
transform: rotate(0.5deg);
}
}
/* Veuillez patienter
Please wait */
* {
cursor: progress!important;
}
/* Les couleurs flashy sont pour les gays
Flashy colors are for gays */
* {
filter: saturate(200%);
}
/* J'ai besoin de nouvelles lunettes
I need new glasses */
* {
filter: blur(0.30px);
}
/* Pour répendre l'amour sur terre, commence par internet
To spread love on earth, start by internet */
*:before, *:after {
content: "❤️";
}