Projektmanagement-Game/public/css/header.css
2021-07-14 08:46:55 +02:00

66 lines
1.1 KiB
CSS

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%;
}
.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;
}
.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;
}
@media only screen and (max-width: 600px) {
header {
height: 5em;
}
.title {
font-size: 3em;
}
.build {
font-size: 1em;
}
.spielanleitung {
font-size: 1.5em;
}
}