Projektmanagement-Game/public/css/header.css

66 lines
1.1 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 {
2021-07-12 08:10:47 +00:00
height: 5em;
2021-07-14 09:34:36 +00:00
2021-06-24 09:04:36 +00:00
}
2021-06-24 12:46:34 +00:00
2021-06-24 09:04:36 +00:00
.title {
2021-07-12 08:10:47 +00:00
font-size: 3em;
2021-06-24 09:04:36 +00:00
}
2021-06-24 12:46:34 +00:00
2021-06-24 09:04:36 +00:00
.build {
2021-07-10 14:36:53 +00:00
font-size: 1em;
2021-06-24 09:04:36 +00:00
}
.spielanleitung {
2021-07-10 14:36:53 +00:00
font-size: 1.5em;
2021-06-24 12:46:34 +00:00
}
2021-06-24 09:04:36 +00:00
}