pageheader/pageheader.css aktualisiert
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.
This commit is contained in:
parent
60bc097d03
commit
70af711f0e
|
@ -16,8 +16,18 @@
|
|||
}
|
||||
|
||||
.pageheader {
|
||||
text-align: center;
|
||||
text-align: left; /* center > left */
|
||||
width: 100%;
|
||||
margin-top: 25px;
|
||||
font-size: 20px;
|
||||
font-size: 1.55rem; /* 20px > 1.55rem */
|
||||
}
|
||||
|
||||
/* The pageheader box */
|
||||
.pageheader {
|
||||
padding: 20px;
|
||||
background-color: #2eb885; /* Green */
|
||||
color: white;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 2px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue