53 lines
970 B
CSS
53 lines
970 B
CSS
#browser {
|
|
left: 140px; /* Offset from browser icon */
|
|
width: 520px;
|
|
height: 420px;
|
|
z-index: 80;
|
|
}
|
|
|
|
.address-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px 16px;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border-bottom: 1px solid var(--glass-border);
|
|
}
|
|
|
|
.lock-icon {
|
|
font-size: 16px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.address-bar input {
|
|
flex-grow: 1;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--bg-white);
|
|
font-family: inherit;
|
|
font-size: 0.9rem;
|
|
outline: none;
|
|
}
|
|
|
|
.browser-content {
|
|
flex-grow: 1;
|
|
background: var(--bg-white);
|
|
color: var(--text-dark);
|
|
padding: 32px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.browser-content h1 {
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
color: var(--primary-blue);
|
|
}
|
|
|
|
.browser-content p {
|
|
color: var(--text-grey);
|
|
}
|