Difference between revisions of "User:VTCobaltblood/Test.css"

From Aurora Information Uplink
Jump to navigation Jump to search
m
m
Line 1: Line 1:
@keyframes a {
@keyframes a {
   to: { transform: scale(300, 300); }
   to: { transform: scale(300, 300); }
}


.tup {
.tup {
Line 13: Line 14:
}
}


.mw-body,
.card {
.mw-headline,
  max-width: 350px;
.mw-label,
  height: 600px;
.mw-input,
  border-style: solid;
.mw-body-content,
  border-width: 2px;
.mw-allpages-table-form,
.mw-allpages-nav {
font-family: "Comic Sans MS" !important;
}
}

Revision as of 23:02, 29 July 2019

@keyframes a {
   to: { transform: scale(300, 300); }
}

.tup {
   width: 1000px;
   height: 100px;
   animation: a 10s linear;
   animation-play-state: paused;
}

.tup:hover {
   animation-play-state: running;
}

.card {
  max-width: 350px;
  height: 600px;
  border-style: solid;
  border-width: 2px;
}