server/assets/development/styles/main.css

86 lines
1.1 KiB
CSS
Raw Normal View History

html {
overflow-y: scroll;
}
body {
font-family: 'Roboto', sans-serif;
margin: 0;
}
.container {
2020-07-15 20:32:42 +00:00
width: 60%;
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;
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;
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 {
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%;
}
}
@media (max-width: 900px) {
.container {
width: 92%;
}
2020-07-15 20:32:42 +00:00
}