2020-07-05 11:59:03 +00:00
|
|
|
html {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2020-07-15 20:32:42 +00:00
|
|
|
width: 60%;
|
2020-07-05 11:59:03 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #3498db;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
/*opacity: 0.8;*/
|
|
|
|
transition: color 0.2s;
|
|
|
|
color: #2980b9;
|
|
|
|
}
|
|
|
|
|
2020-07-19 13:26:57 +00:00
|
|
|
/* sticky footer */
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.up-footer {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
.sticky-footer {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Porposed alert */
|
|
|
|
.proposed-alert {
|
|
|
|
position: fixed;
|
2020-08-27 11:15:07 +00:00
|
|
|
z-index: 8;
|
2020-07-19 13:26:57 +00:00
|
|
|
left: 1em;
|
2020-07-30 12:54:53 +00:00
|
|
|
bottom: 1em;
|
2020-07-19 13:26:57 +00:00
|
|
|
padding: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 3px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
border: 1px solid #c0392b;
|
|
|
|
background-color: #e74c3c;
|
|
|
|
color: white;
|
|
|
|
}
|
2020-07-15 20:32:42 +00:00
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.btn {
|
|
|
|
padding: .5em 1em;
|
|
|
|
color: white;
|
|
|
|
border-radius: 7px;
|
2020-08-27 10:10:00 +00:00
|
|
|
background: #95a5a6;
|
2020-07-21 14:41:07 +00:00
|
|
|
border: 0;
|
2020-07-23 10:43:20 +00:00
|
|
|
cursor: pointer;
|
2020-07-21 14:41:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn:focus {
|
2020-08-27 10:10:00 +00:00
|
|
|
box-shadow: 0 0 8px 0px rgba(0,0,0,0.1);
|
2020-07-21 14:41:07 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
@media (max-width: 1600px) {
|
|
|
|
.container {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1500px) {
|
|
|
|
.container {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
@media (max-width: 900px) {
|
|
|
|
.container {
|
|
|
|
width: 92%;
|
|
|
|
}
|
2020-07-15 20:32:42 +00:00
|
|
|
}
|