Skip to content

Instantly share code, notes, and snippets.

@lunandd
Last active August 10, 2021 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lunandd/0ff23b1c6c2e3dd3cfe7d41bc2cd9f57 to your computer and use it in GitHub Desktop.
Save lunandd/0ff23b1c6c2e3dd3cfe7d41bc2cd9f57 to your computer and use it in GitHub Desktop.
Some CSS
@import url(https://fonts.googleapis.com/css2?family=Fira+Code:wght@600);
body {
background: url(https://csshint.com/wp-content/uploads/2020/01/CSS-Animated-Backgrounds-2.gif);
font-family: "Fira Code", monospace !important; /* Fira Code didn't work because it had single quotes 'Fira Code' and my Browser made it this "'Fira Code'" */
color: #f9f9f9;
cursor: auto;
cursor: url(https://i.ibb.co/CMswZdQ/cursor.png), auto; /*https://i.ibb.co/30FCBDJ/3058-256x256x32.png*/
zoom: 1.04;
-moz-transform: scale(1.04);
-moz-transform-origin: 0 0;
}
.blurbs {
color: #1167b1;
text-shadow: 2px 2px 2px #1167b1;
}
.blurbs h4 {
color: #1167b1;
text-emphasis: bold;
text-shadow: 2px 2px 2px #1167b1;
}
.avatar:hover {
opacity: 0.6;
animation-name: sizeChange;
animation-duration: 2s;
animation-delay: 0.2s;
}
@keyframes sizeChange {
0% {
transform: rotate(0);
transform: scale(0.9);
}
25% {
transform: scale(0.8);
}
50% {
transform: scale(0.7);
}
75% {
transform: scale(0.6);
}
100% {
transform: rotate(360);
}
}
#commentInput {
background-color: #161616;
color: #f6f6f6;
}
.player {
background: #161616;
color: #f9f9f9;
}
#add {
font-size: 0;
}
#add:after {
font-size: small;
content: "Fwiendship ✨✨";
color: #f6f6f6;
}
.fwiendFace img {
border-radius: 50%;
/* content: url(https://cdn.discordapp.com/emojis/780974930329206806.gif?v=1); */
}
td.tableLeft {
background: #161616;
color: #f9f9f9;
}
td.tableRight {
background: #161616;
color: #f9f9f9;
}
.boxHead {
background: #161616;
color: #f9f9f9;
}
.rightHead {
background: #161616;
color: #f9f9f9;
}
div.box.fwiends div.rightHead span.uName{
font-size: 0;
}
div.box.fwiends div.rightHead b {
font-size: 0;
}
div.box.fwiends div.rightHead b::after {
content: "Internet Friends";
font-size: 15px;
}
.url.box {
display: none;
padding: 0;
margin: 0;
}
#header {
background: #161616;
color: #f9f9f9;
}
/* .fwiendFace b {
visibility: hidden;
} */
h1 {
color: #f9f9f9;
}
a {
color: darkcyan;
}
.boxInfo.box a {
color: darkcyan;
}
div.extended.box {
background: url(https://i.redd.it/0bb6dqsiab451.gif);
}
div.box.blurbs div.blogs {
background: url(https://i.gifer.com/76YS.gif);
}
div#block {
font-size: 0;
}
#block::after {
content: "Block 😭";
font-size: small;
color: #f6f6f6;
}
#sMsg {
font-size: 0;
}
#sMsg::after {
content: "Message ✉";
font-size: small;
color: #f6f6f6;
}
#report {
font-size: 0;
}
#report::after {
content: "Report 😡";
font-size: small;
color: #f6f6f6;
}
.fwiendCounter b {
font-size: 0;
}
.fwiendCounter b::after {
content: "Space People";
font-size: 15px;
}
span#credo {
text-shadow: 2px 2px 2px #f9f9f9;
}
div#header a.logo b span {
font-size: 0;
}
div#header a.logo b span::after {
content: " ";
font-size: 15px;
}
div#gender {
font-size: 0;
}
div#gender::after {
content: "idk";
font-size: 15px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment