Projektmanagement-Game/public/css/header.css

90 lines
1.8 KiB
CSS
Raw Normal View History

2021-05-26 14:26:05 +00:00
header {
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
overflow: hidden;
-webkit-user-select: none;
background-color: #7d7d7d;
color: #ffffff;
height: 3em;
padding-top: 5px;
padding-bottom: 5px;
display: grid;
grid-gap: 5%;
grid-template-columns: 25% 40% 25%;
2021-05-26 14:26:05 +00:00
}
2021-06-21 19:03:41 +00:00
.spielanleitung {
display: flex;
align-items: center;
font-size: 1.5em;
padding-left: 10px;
}
.spielanleitung span {
background: #404040;
border: 1px solid #000000;
padding: 5px;
border-radius: 5px;
cursor: pointer;
}
2021-05-26 14:26:05 +00:00
.title {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
vertical-align: central;
}
.build {
display: flex;
justify-content: center;
align-items: flex-end;
font-size: 1em;
padding-right: 10px;
flex-direction: column;
}
2021-06-24 09:04:36 +00:00
@media only screen and (max-width: 980px) {
header {
height: 2.2em;
display: grid;
position: inherit !important;
z-index: 99;
}
.title {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5em;
vertical-align: central;
}
.build {
display: flex;
justify-content: center;
align-items: flex-end;
font-size: 0.5em;
padding-right: 10px;
flex-direction: column;
}
.spielanleitung {
display: flex;
align-items: center;
font-size: 1em;
padding-left: 10px;
}
.spielanleitung span {
background: #404040;
border: 1px solid #000000;
padding: 5px;
border-radius: 5px;
cursor: pointer;
}
}