generated from gbrochar/boilerplate
48 lines
618 B
CSS
48 lines
618 B
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: auto;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #1d2021;
|
|
color: #ebdbb2;
|
|
}
|
|
|
|
#imagewithdescription {
|
|
width: 200px;
|
|
height: auto;
|
|
}
|
|
|
|
#smallimage {
|
|
height: 200px;
|
|
width: auto;
|
|
}
|
|
|
|
#banner {
|
|
max-width: 80%;
|
|
}
|
|
|
|
#navbar {
|
|
max-width: calc(782px - 32px);
|
|
}
|
|
|
|
.loader {
|
|
border: 16px solid #f3f3f3;
|
|
border-top: 16px solid #3498db;
|
|
border-radius: 50%;
|
|
margin: auto;
|
|
width: 120px;
|
|
height: 120px;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin{
|
|
0% {transform: rotate(0deg);}
|
|
100% {transform: rotate(360deg);}
|
|
} |