flexbox-framework
Version:
A flex Css framework to build a responsive website using only the flexbox model and media queries.
123 lines (114 loc) • 2.11 kB
CSS
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,700,300);
.fadeInDown {
animation-name: fadeInDown;
animation-duration: 1.4s;
animation-fill-mode: both;
}
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
animation-duration: 2s;
animation-fill-mode: both;
}
@keyframes fadeInLeft {
0% {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
transform: none;
}
}
a {
text-decoration: none;
color: #007bff;
}
.card {
border-radius: 0.5rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
background-color: #fff;
padding: 0.8rem;
}
.card:hover {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card ul {
list-style: none;
padding: 0;
margin: 0;
}
.card ul li {
margin-bottom: 0.5rem;
line-height: 1.5;
}
.card ul li:hover {
text-decoration: underline;
}
a.btn {
display: inline-block;
text-decoration: none;
transition: ease-in-out 0.3s;
}
a.btn:hover {
animation: 0.3s ease-in-out;
transform: scale(1.1);
}
.btn-gradient-blue {
background: linear-gradient(45deg, #007bff, #00bfff);
color: #fff;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
transition: ease-in-out 0.3s;
}
svg {
width: 100px;
height: 100px;
margin: 20px;
display: inline-block;
}
@keyframes fill {
0% {
fill: transparent;
}
100% {
fill: #e74c3c;
}
}
.made-with-love {
margin-top: 20px;
padding: 10px;
font-size: 10px;
font-family: "Comfortaa", cursive;
}
.made-with-love a {
text-decoration: none;
color: #e74c3c;
}
.made-with-love a:hover {
text-decoration: underline;
}
.made-with-love i {
font-style: normal;
font-size: 14px;
position: relative;
top: 2px;
}
.made-with-love a {
color: #000000;
text-decoration: none;
}
.made-with-love a:hover {
text-decoration: underline;
}
/*# sourceMappingURL=styles.css.map */