.main {
background: var(--page-bg);
background-size: 300%;
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
letter-spacing: 1px;
}
.omnibox-container {
margin-top: 0px;
position: absolute;
width: 100%;
background: var(--main-bg);
}
.omnibox-entry {
width: calc(100% - 24px);
border: 3px solid white;
padding: 6px 10px;
border-bottom: 0 !important;
cursor: pointer;
color: white;
transition: 0.1s ease;
background: var(--main-bg);
font-size: 14px;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
.omnibox-entry:first-of-type {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.omnibox-entry:last-of-type {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom: 3px solid white !important;
}
.omnibox-entry:hover {
background: rgb(255, 255, 255, 0.05);
}
.omnibox-entry:active {
background: rgb(255, 255, 255, 0.1);
}
.main * {
font-family: Roboto, sans-serif;
}
.main input::placeholder {
color: var(--text-color);
opacity: 0.8;
}
#main-page-content {
padding: 30px 50px;
border: 2px solid var(--page-border-color);
border-radius: 6px;
position: absolute;
top: calc(50%);
left: 50%;
height: 140px;
background: var(--main-bg);
width: 60%;
text-align: center;
transform: translate(-50%, -50%);
z-index: 1;
}
.main-page-about-init {
width: 25px;
height: 25px;
color: var(--text-color);
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
font-size: 23px;
}
.main-page-apps-init {
width: 25px;
height: 25px;
color: var(--text-color);
position: absolute;
top: 10px;
left: 10px;
cursor: pointer;
font-size: 23px;
}
.main-page-games-init {
width: 25px;
height: 25px;
color: var(--text-color);
position: absolute;
top: 10px;
left: 45px;
cursor: pointer;
font-size: 23px;
}
.main-page-about-init:hover, .main-page-apps-init:hover, .main-page-games-init:hover {
transform: scale(1.1);
}
.main-page-about-init, .main-page-apps-init, .main-page-games-init {
transition: 0.15s ease;
}
.main-title {
color: var(--text-color);
font-size: 30px;
margin-top: 0;
margin-bottom: 0;
display: flex;
align-items: center;
justify-content: center;
}
#main-input {
width: calc(100% - 24px);
padding: 10px;
background: none;
border: var(--text-color) solid 3px;
border-radius: 3px;
color: var(--text-color);
margin-bottom: 2px;
outline: none;
transition: 0.25s ease;
}
#main-input:focus, #main-input:hover {
background: rgb(255, 255, 255, 0.1);
}
.main-desc {
font-size: 20px;
font-weight: 100;
color: var(--text-color);
margin-bottom: 19px;
margin-top: 10px;
}
.main-title span {
margin-left: -2px;
margin-right: 1px;
}
.main-title svg {
vertical-align: top;
margin-bottom: 3px;
margin-left: 7px;
}
.main-page-stealth-switch {
width: 20px;
height: auto;
color: var(--text-color);
position: absolute;
top: 50%;
right: 12px;
transform: translateY(calc(-50% + 1px));
cursor: pointer;
font-size: 15px;
}
#main-page-init {
width: 70%;
margin: auto;
position: relative;
text-align: center;
margin-bottom: 10px;
transition: 0.15s ease;
opacity: 0;
}
#form {
position: relative;
}