727eca1ce7
Among other things, I use the page header to inform about current maintenance work or other upcoming work. The information should therefore be provided within an appropriate framework. With a little CSS, the page header gets a frame in green. The font was adjusted to an appropriate size.
33 lines
486 B
CSS
33 lines
486 B
CSS
#pageheader-label {
|
|
float: left;
|
|
width: 300px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#pageheader-words {
|
|
float: left;
|
|
margin-top: 10px;
|
|
width: 400px;
|
|
height: 150px;
|
|
}
|
|
|
|
#pageheader-submit {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.pageheader {
|
|
text-align: center;
|
|
width: 100%;
|
|
margin-top: 25px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
/* The pageheader box */
|
|
.pageheader {
|
|
padding: 20px;
|
|
background-color: #2eb885; /* Green */
|
|
color: white;
|
|
border: 1px solid transparent;
|
|
border-radius: 2px;
|
|
margin-bottom: 15px;
|
|
}
|