| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .header{
- display: flex;
- justify-content: center;
- background: #001b2d;
- width: 100%;
- height: 75px;
- }
- .header a{
- display: flex;
- align-items: center;
- text-decoration: none;
- }
- .header img{
- display: inline-block;
- max-height: 65px;
- margin: 5px;
- text-align: center;
- }
- .header h1{
- display: inline-block;
- color: #ff626b;
- }
- .banner{
- width: 100%;
- text-align: center;
- display: none;
- }
- .banner .notification{
- background: green;
- color: white;
- padding: 10px;
- margin: 5px;
- font-weight: bold;
- }
- .banner .error{
- background: red;
- color: white;
- padding: 10px;
- margin: 5px;
- font-weight: bold;
- }
|