cobalt/src/front/cobalt.css

556 lines
11 KiB
CSS
Raw Normal View History

2022-07-08 19:17:56 +01:00
:root {
--transparent: rgba(0, 0, 0, 0);
--without-padding: calc(100% - 4rem);
--border-15: 0.15rem solid var(--accent);
2022-08-04 19:08:26 +01:00
--border-10: 0.1rem solid var(--accent);
--font-mono: 'Noto Sans Mono', 'Consolas', 'SF Mono', monospace;
2022-07-08 19:17:56 +01:00
}
@media (prefers-color-scheme: dark) {
:root {
--accent: rgb(225, 225, 225);
--accent-hover: rgb(25, 25, 25);
--accent-button-bg: rgb(20, 20, 20);
2022-07-08 19:17:56 +01:00
--accent-press: rgb(10, 10, 10);
--accent-unhover: rgb(100, 100, 100);
--accent-unhover-2: rgb(110, 110, 110);
--background: rgb(0, 0, 0);
}
}
@media (prefers-color-scheme: light) {
:root {
--accent: rgb(25, 25, 25);
--accent-hover: rgb(225, 225, 225);
--accent-button-bg: rgb(230, 230, 230);
--accent-press: rgb(240, 240, 240);
2022-07-08 19:17:56 +01:00
--accent-unhover: rgb(190, 190, 190);
--accent-unhover-2: rgb(110, 110, 110);
--background: rgb(255, 255, 255);
}
}
[data-theme="dark"] {
--accent: rgb(225, 225, 225);
--accent-hover: rgb(25, 25, 25);
--accent-button-bg: rgb(20, 20, 20);
2022-07-08 19:17:56 +01:00
--accent-press: rgb(10, 10, 10);
--accent-unhover: rgb(100, 100, 100);
--accent-unhover-2: rgb(110, 110, 110);
--background: rgb(0, 0, 0);
}
[data-theme="light"] {
--accent: rgb(25, 25, 25);
--accent-hover: rgb(225, 225, 225);
--accent-button-bg: rgb(230, 230, 230);
--accent-press: rgb(240, 240, 240);
2022-07-08 19:17:56 +01:00
--accent-unhover: rgb(190, 190, 190);
--accent-unhover-2: rgb(110, 110, 110);
--background: rgb(255, 255, 255);
}
html,
body {
margin: 0;
background: var(--background);
color: var(--accent);
font-family: var(--font-mono);
2022-07-08 19:17:56 +01:00
user-select: none;
-webkit-tap-highlight-color: var(--transparent);
overflow: hidden;
-ms-overflow-style: none;
scrollbar-width: none;
}
a {
color: var(--accent);
text-decoration: none;
user-select: none;
2022-07-08 19:17:56 +01:00
}
::placeholder {
color: var(--accent-unhover-2);
}
::-webkit-scrollbar {
display: none;
}
:focus-visible {
outline: var(--border-15);
}
[type=checkbox] {
margin-right: 0.8rem;
}
[type="checkbox"] {
-webkit-appearance: none;
margin-right: 0.8rem;
z-index: 0;
}
[type="checkbox"]::before {
content: "";
width: 15px;
height: 15px;
border: var(--border-15);
background-color: var(--accent-button-bg);
2022-07-08 19:17:56 +01:00
display: block;
z-index: 5;
position: relative;
}
[type="checkbox"]:checked::before {
box-shadow: inset 0 0 0 0.2rem var(--accent-button-bg);
2022-07-08 19:17:56 +01:00
background-color: var(--accent);
}
button {
background: none;
border: none;
font-family: var(--font-mono);
2022-07-08 19:17:56 +01:00
color: var(--accent);
font-size: 0.9rem;
}
input,
input[type="text"],
[type="text"] {
border-radius: 0;
2022-07-08 19:17:56 +01:00
}
button:hover,
.switch:hover,
.checkbox:hover,
.text-to-copy:hover {
2022-07-08 19:17:56 +01:00
background: var(--accent-hover);
cursor: pointer;
}
.switch.text-backdrop:hover,
.switch.text-backdrop:active,
.text-to-copy.text-backdrop:hover,
.text-to-copy.text-backdrop:active {
background: var(--accent);
color: var(--background);
}
2022-07-08 19:17:56 +01:00
button:active,
.switch:active,
.checkbox:active,
.text-to-copy:active {
2022-07-08 19:17:56 +01:00
background: var(--accent-press);
cursor: pointer;
transform: scale(0.95)
2022-07-08 19:17:56 +01:00
}
input[type="checkbox"] {
cursor: pointer;
}
.button {
background: none;
border: var(--border-15);
color: var(--accent);
padding: 0.3rem 0.75rem 0.5rem;
font-size: 1rem;
}
.mono {
font-family: var(--font-mono);
2022-07-08 19:17:56 +01:00
}
.center {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#cobalt-main-box {
position: fixed;
width: 60%;
height: auto;
display: inline-flex;
padding: 3rem;
}
#logo-area {
padding-right: 3rem;
padding-top: 0.1rem;
text-align: left;
font-size: 1rem;
white-space: nowrap;
}
#download-area {
display: inline-flex;
height: 2rem;
width: 100%;
margin-top: -0.6rem;
}
.box {
background: var(--background);
border: var(--border-15);
color: var(--accent);
}
#url-input-area {
background: var(--background);
padding: 1.2rem 1rem;
width: 100%;
color: var(--accent);
border: 0;
float: right;
2022-08-04 19:08:26 +01:00
border-bottom: 0.1rem solid var(--accent-unhover);
2022-07-08 19:17:56 +01:00
transition: border-bottom 0.2s;
outline: none;
}
#url-input-area:focus {
outline: none;
2022-08-04 19:08:26 +01:00
border-bottom: var(--border-10);
2022-07-08 19:17:56 +01:00
}
#download-button {
height: 2.5rem;
color: var(--accent);
background: none;
border: none;
font-size: 1.4rem;
cursor: pointer;
padding: 0;
letter-spacing: -0.1rem;
}
#download-button:disabled {
color: var(--accent-unhover);
cursor: not-allowed;
}
#footer {
2022-07-08 20:05:43 +01:00
bottom: 0rem;
2022-07-08 19:17:56 +01:00
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
font-size: 0.9rem;
text-align: center;
2022-07-08 20:05:43 +01:00
width: 90%;
2022-07-08 19:17:56 +01:00
}
#footer-buttons {
display: inline-flex;
align-items: center;
}
2022-07-08 19:17:56 +01:00
.footer-button {
cursor: pointer;
color: var(--accent-unhover-2);
border: 0.15rem solid var(--accent-unhover-2);
2022-07-08 19:17:56 +01:00
padding: 0.4rem 0.8rem 0.5rem;
margin: 0.4rem;
display: flex;
align-content: center;
align-items: center;
2022-07-08 19:17:56 +01:00
}
.footer-button:hover {
color: var(--accent);
border: var(--border-15);
}
.text-backdrop {
background: var(--accent);
color: var(--background);
padding: 0 0.1rem;
}
::-moz-selection {
background-color: var(--accent);
color: var(--background);
}
::selection {
background-color: var(--accent);
color: var(--background);
}
.popup {
visibility: hidden;
position: fixed;
height: auto;
width: 30%;
2022-07-08 19:17:56 +01:00
z-index: 999;
padding: 3rem 2rem 2rem 2rem;
2022-07-08 19:17:56 +01:00
font-size: 0.9rem;
max-height: 80%;
}
#popup-backdrop {
opacity: 0.5;
background-color: var(--background);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 998;
}
.popup.scrollable {
2022-07-08 19:17:56 +01:00
height: 80%;
}
.scrollable .bottom-link {
padding-bottom: 2rem;
}
.changelog-subtitle {
font-size: 1.1rem;
padding-bottom: 0.7rem;
}
2022-07-08 19:17:56 +01:00
.nowrap {
white-space: nowrap;
}
.no-top-padding {
padding-top: 0!important;
}
.desc-padding {
2022-07-08 19:17:56 +01:00
padding-bottom: 1.5rem;
}
#popup-subtitle {
2022-07-08 19:17:56 +01:00
font-size: 1.1rem;
padding-bottom: 1rem;
2022-07-08 19:17:56 +01:00
}
#popup-desc,
#desc-error {
2022-07-08 19:17:56 +01:00
width: 100%;
text-align: left;
float: left;
line-height: 1.7rem;
}
#popup-title {
2022-07-08 19:17:56 +01:00
font-size: 1.5rem;
margin-bottom: 0.5rem;
line-height: 1.85em;
display: flex;
align-items: center;
2022-07-08 19:17:56 +01:00
}
#popup-footer {
2022-07-08 19:17:56 +01:00
bottom: 0;
position: fixed;
margin-bottom: 1.5rem;
background: var(--background);
width: var(--without-padding);
}
.popup-footer-content {
font-size: 0.8rem;
line-height: 1.7rem;
color: var(--accent-unhover-2);
border-top: 0.05rem solid var(--accent-unhover-2);
padding-top: 0.4rem;
}
#popup-above-title {
2022-07-08 19:17:56 +01:00
color: var(--accent-unhover-2);
font-size: 0.8rem;
}
#popup-content {
2022-07-08 19:17:56 +01:00
overflow-x: hidden;
overflow-y: auto;
height: var(--without-padding);
scrollbar-width: none;
}
#popup-header {
2022-07-08 19:17:56 +01:00
position: relative;
background: var(--background);
z-index: 999;
}
#popup-content.with-footer {
2022-07-08 19:17:56 +01:00
margin-bottom: 3rem;
}
#popup-close {
2022-07-08 19:17:56 +01:00
cursor: pointer;
float: right;
right: 0rem;
position: absolute;
2022-07-08 19:17:56 +01:00
}
.settings-category {
padding-bottom: 1.2rem;
}
.category-title {
2022-07-08 19:17:56 +01:00
width: 100%;
text-align: left;
line-height: 1.7rem;
color: var(--accent-unhover-2);
border-bottom: 0.05rem solid var(--accent-unhover-2);
padding-bottom: 0.25rem;
margin-bottom: 1rem;
2022-07-08 19:17:56 +01:00
}
.bottom-margin {
margin-bottom: 1rem;
}
2022-07-08 19:17:56 +01:00
.checkbox {
display: inline-flex;
align-items: center;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
padding: 0.6rem;
padding-right: 1rem;
width: auto;
margin: 0 0.5rem 0.5rem 0;
background: var(--accent-button-bg);
2022-07-08 19:17:56 +01:00
}
.checkbox-label {
line-height: 1.3rem;
}
.switch-container {
width: 100%;
}
.subtitle {
width: 100%;
text-align: left;
line-height: 1.7rem;
padding-bottom: 0.4rem;
color: var(--accent);
}
.subtitle.extra {
2022-07-08 19:17:56 +01:00
margin-top: 1rem;
}
.small-padding .subtitle {
margin-top: 0.5rem;
}
2022-07-08 19:17:56 +01:00
.explanation {
padding-top: 1rem;
width: 100%;
font-size: 0.8rem;
text-align: left;
line-height: 1.3rem!important;
2022-07-08 19:17:56 +01:00
color: var(--accent-unhover-2);
}
.switch {
padding: 0.8rem;
width: 100%;
text-align: center;
color: var(--accent);
background: var(--accent-button-bg);
display: flex;
justify-content: center;
2022-07-08 19:17:56 +01:00
align-items: center;
cursor: pointer;
}
.switch.space-right {
margin-right: 1rem
}
2022-07-08 19:17:56 +01:00
.switch[data-enabled="true"] {
color: var(--background);
background: var(--accent);
cursor: default;
}
.switches {
display: flex;
width: auto;
flex-direction: row;
flex-wrap: nowrap;
overflow-x: scroll;
}
.autowidth {
width: auto;
}
.bottom-space {
margin-bottom: 2rem;
2022-07-08 19:17:56 +01:00
}
.text-to-copy {
user-select: text;
border: var(--border-15);
padding: 1rem;
overflow: auto;
}
#close-bottom {
width: 18%;
margin-left: 1rem;
background: var(--background);
border: var(--border-15);
color: var(--accent);
padding: 0.3rem 0.75rem 0.5rem;
}
.popup-tab-content {
display: none;
}
#popup-tabs {
z-index: 999;
bottom: 0;
position: relative;
width: 100%;
}
.emoji {
margin-right: 0.4rem;
}
2022-07-08 19:17:56 +01:00
/* adapt the page according to screen size */
@media screen and (min-width: 2300px) {
html {
zoom: 130%;
}
}
@media screen and (min-width: 3840px) {
html {
zoom: 180%;
}
}
@media screen and (min-width: 5000px) {
html {
zoom: 300%;
}
}
@media screen and (max-width: 1440px) {
#cobalt-main-box {
2022-07-08 19:17:56 +01:00
width: 65%;
}
.popup {
width: 40%;
2022-07-08 19:17:56 +01:00
}
}
@media screen and (max-width: 1100px) {
#cobalt-main-box {
width: 70%;
}
.popup {
width: 50%;
}
}
@media screen and (max-width: 1025px) {
#cobalt-main-box {
2022-07-08 19:17:56 +01:00
width: 75%;
}
.popup {
width: 60%;
2022-07-08 19:17:56 +01:00
}
}
@media screen and (max-height: 850px) {
.popup {
2022-07-08 19:17:56 +01:00
height: 80%
}
.bottom-link {
padding-bottom: 2rem;
}
2022-07-08 19:17:56 +01:00
}
/* mobile page */
@media screen and (max-width: 949px) {
2022-07-08 19:17:56 +01:00
#logo-area {
padding-right: 0;
padding-top: 0;
position: fixed;
line-height: 0;
margin-top: -2rem;
width: 100%;
text-align: center;
}
#cobalt-main-box {
width: 85%;
2022-07-08 19:17:56 +01:00
display: flex;
border: none;
padding: 0;
}
.popup, .popup.scrollable {
2022-07-08 19:17:56 +01:00
border: none;
width: 90%;
height: 90%;
max-height: 100%;
}
.bottom-link {
padding-bottom: 2rem;
}
2022-07-08 19:17:56 +01:00
}
@media screen and (max-width: 475px) {
.tab {
font-size: 0;
}
.tab .emoji {
margin-right: 0;
}
2022-07-08 19:17:56 +01:00
#logo-area {
padding-right: 0;
padding-top: 0;
position: fixed;
line-height: 0;
margin-top: -2rem;
width: 100%;
text-align: center;
}
#cobalt-main-box {
width: 90%;
display: flex;
border: none;
padding: 0;
}
.popup, .popup.scrollable {
2022-07-08 19:17:56 +01:00
border: none;
width: 90%;
height: 90%;
max-height: 100%;
}
.bottom-link {
padding-bottom: 2rem;
}
}