78 lines
1.3 KiB
CSS
Executable File
78 lines
1.3 KiB
CSS
Executable File
:root {
|
|
--logo-background-color: #0e2058;
|
|
--company-name-color: #eda421;
|
|
background-color: #ffffff;
|
|
font-family: Verdana, Geneva, sans-serif;
|
|
}
|
|
|
|
img.logo {
|
|
padding-left: 20px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
div.logo-wrapper {
|
|
width: 200px;
|
|
height: 200px;
|
|
border-bottom-right-radius: 100%;
|
|
background-color: var(--logo-background-color);
|
|
z-index: 1;
|
|
}
|
|
|
|
div.text-block {
|
|
margin-top: -50px;
|
|
margin-left: 200px;
|
|
margin-right: 50px;
|
|
}
|
|
|
|
@media only screen and (max-width:630px) {
|
|
div.logo-wrapper {
|
|
margin-top: 25px;
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
img.logo {
|
|
width: 30px;
|
|
padding-top: 0px;
|
|
padding-left: 10px;
|
|
margin-top: -10px;
|
|
}
|
|
|
|
div.text-block {
|
|
margin-left: 50px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: large;
|
|
}
|
|
|
|
li {
|
|
font-size: small;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
div.top-banner {
|
|
position: absolute;
|
|
top: 0;
|
|
background-color: var(--logo-background-color);
|
|
color: var(--company-name-color);
|
|
font-size: 50px;
|
|
width: 99%;
|
|
text-align: center;
|
|
z-index: -1;
|
|
}
|
|
|
|
@media only screen and (max-width:1000px) {
|
|
div.top-banner {
|
|
font-size: 25px;
|
|
}
|
|
}
|
|
|
|
div.footer {
|
|
position: absolute;
|
|
color: gray;
|
|
bottom: 0;
|
|
right: 0;
|
|
} |