| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .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;
- min-height: 50px;
- }
- .banner .notification{
- background: green;
- color: white;
- font-weight: bold;
- list-style-type: none;
- }
- .banner .error{
- background: red;
- color: white;
- font-weight: bold;
- list-style-type: none;
- }
|