flaschengeist/geruecht/static/master.css

155 lines
2.1 KiB
CSS
Raw Normal View History

2019-01-11 21:19:38 +00:00
body {
margin: 0 auto;
}
.topnav {
background-color: #077BCB;
2019-01-13 19:07:46 +00:00
height: 61;
2019-01-11 21:19:38 +00:00
overflow: hidden;
}
2019-01-13 19:07:46 +00:00
.blue-button {
2019-01-11 21:19:38 +00:00
color: white;
background-color: #055288;
text-align: center;
2019-01-12 01:57:06 +00:00
padding: 5px 5px;
2019-01-11 21:19:38 +00:00
margin: 17px 17px;
text-decoration: none;
font-size: 17px;
border: 0px solid white;
border-style: solid;
border-radius: 10px;
transition-duration: 0.4s;
2019-01-13 19:07:46 +00:00
/*box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}
.no-mg {
margin: 0;
}
.no-pd {
padding: 0;
2019-01-11 21:19:38 +00:00
}
2019-01-13 19:07:46 +00:00
.blue-button:hover {
2019-01-11 21:19:38 +00:00
background: white;
color: black;
}
.blue-button:active {
transform: translateY(4px);
}
2019-01-13 19:07:46 +00:00
.first {
float: left;;
2019-01-11 21:19:38 +00:00
margin-left: 10%;
}
2019-01-13 19:07:46 +00:00
.last {
float: right;
}
.logo-nav {
height: 61px;
width: auto;
2019-01-14 14:23:00 +00:00
transition-duration: 0.4s;
}
.logo-nav:active {
transform: translateY(4px)
2019-01-13 19:07:46 +00:00
}
2019-01-11 21:19:38 +00:00
.geruecht {
2019-01-12 01:57:06 +00:00
margin: 5px auto;
2019-01-11 21:19:38 +00:00
display: table;
border: 0px;
border-top: 1px gray;
border-bottom: 1px gray;
border-radius: 15px;
border-style: solid;
width: 100%;
2019-01-12 01:57:06 +00:00
border-spacing: 5px;
height: 30px;
2019-01-11 21:19:38 +00:00
}
.g-item {
display: table-cell;
text-align: center;
2019-01-12 01:57:06 +00:00
vertical-align: middle;
width: 20%;
}
.g-item p {
font-size: 15px;
2019-01-11 21:19:38 +00:00
}
.button {
width: 70px;
border-radius: 10px;
background: green;
color: white;
2019-01-14 14:23:00 +00:00
transition-duration: 0.4s;
2019-01-11 21:19:38 +00:00
}
.button:active {
transform: translateY(4px);
}
2019-01-11 21:19:38 +00:00
.bottombar {
background-color: #077BCB;
overflow: hidden;
position: fixed;
bottom: 0;
width: 100%;
2019-01-12 01:57:06 +00:00
display: table;
2019-01-11 21:19:38 +00:00
}
.bottombar-element {
float: left;
2019-01-12 01:57:06 +00:00
line-height: auto;
2019-01-13 19:07:46 +00:00
vertical-align: middle;
2019-01-11 21:19:38 +00:00
}
.right {
float: right;
}
2019-01-12 01:57:06 +00:00
.form-group {
float: left;
border: 0;
height: auto;
padding: 5px;
margin: auto;
float: left;
vertical-align: middle;
}
.reg-label {
color: white;
}
.m {
margin-top: 10px;
}
.alert {
color: black;
font-size: 15px;
text-align: center;
}
.alert-success {
background: lightgreen;
border: 1px solid darkgreen;
color: darkgreen;
border-radius: 5px;
padding: 6px;
}
2019-01-13 19:07:46 +00:00
.alert-error {
background: darksalmon;
border: 1px solid darkred;
color: darkred;
border-radius: 5px;
padding: 6px;
}