hacksrus.uk/style.css

80 lines
1.3 KiB
CSS
Raw Permalink Normal View History

2020-08-25 21:00:17 +01:00
@font-face { font-family: open-dyslexic; src: url('fonts/OpenDyslexic3-Regular.ttf'); }
body {
2020-08-25 21:00:17 +01:00
font-family: "open-dyslexic", "Comic Sans MS";
}
2018-08-10 23:59:11 +01:00
div.container {
max-width: 700px;
margin: 0 auto;
text-align: center;
2018-08-10 23:59:11 +01:00
}
ul.fisher-price-links {
2018-08-10 23:59:11 +01:00
display: flex;
padding: 0px ;
align-items: center;
justify-content: center;
}
ul.fisher-price-links>li {
2018-08-10 23:59:11 +01:00
padding: 2px;
background-color: #adadad;
list-style: none;
box-shadow: 4px 4px;
margin-right: 10px;
transition: all 0.1s ease-in-out;
}
ul.fisher-price-links>li:nth-of-type(4n+1) {
2018-08-10 23:59:11 +01:00
background-color: #ea1a5b;
}
ul.fisher-price-links>li:nth-of-type(4n+2) {
2018-08-10 23:59:11 +01:00
background-color: #f48120;
}
ul.fisher-price-links>li:nth-of-type(4n+3) {
2018-08-10 23:59:11 +01:00
background-color: #73bd45;
}
ul.fisher-price-links>li:nth-of-type(4n) {
2018-08-10 23:59:11 +01:00
background-color: #0862ad;
}
ul.fisher-price-links>li:hover {
2018-08-10 23:59:11 +01:00
transform: translate(-2px, -2px);
box-shadow: 8px 8px;
/*z-index: -1;*/
}
ul.fisher-price-links>li>a {
2018-08-10 23:59:11 +01:00
color: #fff;
text-decoration: none;
2020-08-25 21:00:17 +01:00
font-size: 18px;
}
2020-08-25 20:45:01 +01:00
.left-aligned {
text-align: left;
}
.unicorns {
animation: unicornMode 2s linear 0s infinite;
}
@keyframes unicornMode {
from {
color: #6666ff;
}
10% {
color: #0099ff;
}
50% {
color: #00ff00;
}
75% {
color: #ff3399;
}
100% {
color: #6666ff;
}
}