generated from corysanin/nodejs-web-template
123 lines
1.6 KiB
SCSS
123 lines
1.6 KiB
SCSS
html,
|
|
body {
|
|
min-height: 100%;
|
|
padding-bottom: 3em;
|
|
}
|
|
|
|
body {
|
|
line-height: 1.5;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 14pt;
|
|
}
|
|
|
|
.content {
|
|
width: 80%;
|
|
width: calc(100% - 150px);
|
|
margin: auto;
|
|
}
|
|
|
|
.em {
|
|
font-style: italic;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2.25em;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
blockquote {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul li {
|
|
list-style: disc;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.nav_links {
|
|
padding: .3em .5em;
|
|
text-align: center;
|
|
margin-bottom: 1em;
|
|
|
|
li {
|
|
display: inline;
|
|
|
|
a {
|
|
padding: .3em .5em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
padding: .4em .65em;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.img-container {
|
|
overflow-x: auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
#installs {
|
|
h1 {
|
|
animation-iteration-count: infinite;
|
|
animation-name: zoomie;
|
|
animation-duration: 1.5s;
|
|
animation-timing-function: ease-out;
|
|
}
|
|
|
|
span {
|
|
padding: .05em .25em;
|
|
border-radius: .15em;
|
|
}
|
|
}
|
|
|
|
@keyframes zoomie {
|
|
0% {
|
|
transform: perspective(800px) translate3d(0, 0, 0px);
|
|
}
|
|
|
|
50% {
|
|
transform: perspective(800px) translate3d(0, 0, 40px);
|
|
}
|
|
|
|
100% {
|
|
transform: perspective(800px) translate3d(0, 0, 0px);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width:540px) {
|
|
.content {
|
|
width: 95%;
|
|
width: calc(100% - 50px);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.3em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2em;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width:450px) {
|
|
img {
|
|
max-width: initial;
|
|
}
|
|
} |