47 lines
574 B
CSS
47 lines
574 B
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: auto;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#imagewithdescription {
|
|
width: 200px;
|
|
height: auto;
|
|
}
|
|
|
|
#smallimage {
|
|
height: 200px;
|
|
width: auto;
|
|
}
|
|
|
|
#banner {
|
|
max-width: 40%;
|
|
}
|
|
|
|
#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);}
|
|
}
|