mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
45 lines
983 B
SCSS
45 lines
983 B
SCSS
// Layout
|
|
//
|
|
// Styles for managing the structural hierarchy of the site.
|
|
|
|
.container {
|
|
max-width: 40rem;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
footer {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.updated {
|
|
border-radius: 5px;
|
|
-webkit-animation: fadeIt 2s linear;
|
|
-moz-animation: fadeIt 2s linear;
|
|
-o-animation: fadeIt 2s linear;
|
|
animation: fadeIt 2s linear;
|
|
}
|
|
|
|
@-webkit-keyframes fadeIt {
|
|
0% { background-color: #FFFFFF; }
|
|
15% { background-color: #ff9; }
|
|
100% { background-color: #FFFFFF; }
|
|
}
|
|
@-moz-keyframes fadeIt {
|
|
0% { background-color: #FFFFFF; }
|
|
15% { background-color: #ff9; }
|
|
100% { background-color: #FFFFFF; }
|
|
}
|
|
@-o-keyframes fadeIt {
|
|
0% { background-color: #FFFFFF; }
|
|
15% { background-color: #ff9; }
|
|
100% { background-color: #FFFFFF; }
|
|
}
|
|
@keyframes fadeIt {
|
|
0% { background-color: #FFFFFF; }
|
|
15% { background-color: #ff9; }
|
|
100% { background-color: #FFFFFF; }
|
|
}
|