| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .header{
- display: flex;
- justify-content: space-between;
- background: #001b2d;
- width: 100%;
- height: 75px;
- }
- .header .logo{
- display: flex;
- align-items: center;
- text-decoration: none;
- margin-left: 5px;
- }
- .header img{
- display: inline-block;
- max-height: 65px;
- margin: 5px;
- text-align: center;
- }
- .header h1{
- display: inline-block;
- color: #ff626b;
- }
- .header .logout{
- display: flex;
- align-items: center;
- color: #ff626b;
- float: right;
- margin-right: 25px;
- text-decoration: none;
- }
- .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;
- }
|