26 lines
784 B
Plaintext
26 lines
784 B
Plaintext
.site-logo {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: linear-gradient(135deg, #ff3399, #ff007a);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 10px;
|
|
position: relative;
|
|
box-shadow: 0 0 10px rgba(255, 51, 153, 0.5);
|
|
}
|
|
.site-logo .bi-globe-americas {
|
|
color: white;
|
|
font-size: 22px;
|
|
}
|
|
.site-logo .bi-airplane-fill {
|
|
color: #00f2ff;
|
|
font-size: 14px;
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 5px;
|
|
transform: rotate(45deg);
|
|
text-shadow: 0 0 5px rgba(0, 242, 255, 0.8);
|
|
}
|