126 lines
1.9 KiB
CSS
126 lines
1.9 KiB
CSS
body {
|
|
background-color: #aac4ee;
|
|
color: #359aff;
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
padding-bottom: 60px; /*Footer height*/
|
|
}
|
|
|
|
.titleimg {
|
|
width: 80%;
|
|
padding-top: 50px;
|
|
padding-bottom: 50px;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.lookup-box {
|
|
text-align: center;
|
|
border: black;
|
|
border-radius: 40px;
|
|
padding: 10px;
|
|
margin-bottom: 5px;
|
|
font-size: 18px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.lookup-button {
|
|
background-color: #3c78d8;
|
|
color: #f6f5f4;
|
|
border: none;
|
|
border-radius: 18px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
padding: 5px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a {
|
|
display: float;
|
|
background-color: #3c78d8;
|
|
color: #f6f5f4;
|
|
padding: 7px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
margin-bottom: 10px;
|
|
line-height: 3;
|
|
}
|
|
|
|
.quicklink {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
background-color: #3c78d8;
|
|
border: none;
|
|
border-radius: 10px;
|
|
color: #f6f5f4;
|
|
padding: 7px;
|
|
margin-bottom: 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.menu {
|
|
display: none;
|
|
background-color: #3c78d8;
|
|
width: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.menu-button {
|
|
position: absolute;
|
|
background-color: #aac4ee;
|
|
border: none;
|
|
right: 30px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menuitem {
|
|
background-color: #2256aa;
|
|
color: #f6f5f4;
|
|
border: none;
|
|
border-radius: 18px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
padding: 3px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menuitem:hover {
|
|
background-color: #112b55;
|
|
}
|
|
|
|
.popup-info {
|
|
display: none;
|
|
position: absolute;
|
|
margin: 0 auto;
|
|
left: 0;
|
|
right: 0;
|
|
top: 20px;
|
|
width: 80%;
|
|
background-color: rgba(41,106,163,0.9);
|
|
color: white;
|
|
border-radius: 50px;
|
|
padding: 30px;
|
|
}
|
|
|
|
.popup-close {
|
|
position: absolute;
|
|
right: 30px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
footer {
|
|
background-color: #7fa7e6;
|
|
color: white;
|
|
width: 100%;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|