104 lines
1.7 KiB
CSS
104 lines
1.7 KiB
CSS
body {
|
|
--grey10: #e7e7e7;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
background: #fff;
|
|
color: rgb(74, 74, 79);
|
|
font-size: 13px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h3:first-of-type {
|
|
margin-block-start: 2.5rem;
|
|
}
|
|
|
|
label {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
label > span {
|
|
padding-inline-end: 4px;
|
|
}
|
|
|
|
.settings-group {
|
|
margin-block-end: 16px;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.settings-group p {
|
|
margin-inline-start: 24px;
|
|
margin-block: 4px 8px;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
margin-inline: 0 8px;
|
|
margin-block: 1px auto;
|
|
inline-size: 16px;
|
|
block-size: 16px;
|
|
}
|
|
|
|
button {
|
|
margin-inline: 0 auto;
|
|
}
|
|
|
|
.keyboard-shortcut {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
max-inline-size: 70%;
|
|
align-items: center;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.moz-vpn-proxy-permissions {
|
|
border-radius: 1rem;
|
|
padding-inline: 4rem;
|
|
padding-block: 2rem 1rem;
|
|
margin-block: 0 2rem;
|
|
border: 1px solid var(--grey10);
|
|
}
|
|
|
|
h3.moz-vpn-proxy-permissions-title {
|
|
margin-block: 0 1rem;
|
|
margin-inline: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.moz-vpn-proxy-permissions-title.show-warning::before {
|
|
background-image: url("/img/warning.svg");
|
|
background-size: 24px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
position: absolute;
|
|
inset-inline-start: -2.5rem;
|
|
content: "";
|
|
display: block;
|
|
block-size: 24px;
|
|
inline-size: 24px;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background: #23212a;
|
|
color: #fff;
|
|
}
|
|
|
|
.moz-vpn-proxy-permissions {
|
|
border-color: transparent;
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
p {
|
|
color: rgb(177, 177, 179);
|
|
}
|
|
}
|