2021-03-01 07:01:34 -07:00
|
|
|
:root {
|
|
|
|
--grey-500: hsl(0, 0%, 50%);
|
|
|
|
--grey-600: hsl(0, 0%, 40%);
|
|
|
|
--grey-700: hsl(0, 0%, 30%);
|
|
|
|
--grey-900: hsl(0, 0%, 10%);
|
|
|
|
--green-300: hsl(110, 45%, 70%);
|
|
|
|
--green-400: hsl(110, 45%, 60%);
|
|
|
|
--green-600: hsl(110, 45%, 40%);
|
|
|
|
--red-400: hsl(10, 60%, 60%);
|
|
|
|
--blue-500: hsl(201, 80%, 59%);
|
|
|
|
--blue-700: hsl(201, 90%, 30%);
|
|
|
|
--purple-50: hsl(250, 30%, 98%);
|
|
|
|
--purple-100: hsl(250, 48%, 95%);
|
|
|
|
--purple-200: hsl(250, 48%, 90%);
|
|
|
|
--purple-300: hsl(250, 48%, 85%);
|
|
|
|
--purple-400: hsl(250, 48%, 70%);
|
|
|
|
--purple-500: hsl(250, 48%, 65%);
|
|
|
|
--purple-600: hsl(250, 48%, 60%);
|
|
|
|
--purple-700: hsl(250, 48%, 55%);
|
|
|
|
--purple-900: hsl(250, 38%, 45%);
|
|
|
|
--yellow-100: hsl(56, 100%, 95%);
|
|
|
|
--yellow-200: hsl(56, 100%, 90%);
|
|
|
|
--yellow-500: hsl(56, 100%, 65%);
|
|
|
|
}
|
2020-07-30 04:05:11 -06:00
|
|
|
|
2020-06-25 10:01:06 -06:00
|
|
|
* {
|
2021-03-01 07:01:34 -07:00
|
|
|
box-sizing: border-box;
|
2020-06-25 10:01:06 -06:00
|
|
|
}
|
2021-06-08 02:55:12 -06:00
|
|
|
:focus {
|
|
|
|
outline: none;
|
|
|
|
box-shadow: 0 0 0 3px lightskyblue;
|
|
|
|
}
|
|
|
|
input:focus, textarea:focus {
|
|
|
|
background: azure;
|
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
input[type="radio"]:focus + label {
|
|
|
|
box-shadow: 0 0 0 3px lightskyblue;
|
|
|
|
background: azure !important;
|
|
|
|
color: var(--grey-900) !important;
|
|
|
|
}
|
2020-06-25 10:01:06 -06:00
|
|
|
body {
|
2021-03-01 07:01:34 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
padding: 1.6rem 0 0;
|
2021-11-07 08:07:29 -07:00
|
|
|
line-height: 1.4rem;
|
2021-03-01 07:01:34 -07:00
|
|
|
font-family: sans-serif;
|
|
|
|
color: var(--grey-900);
|
2020-06-25 10:01:06 -06:00
|
|
|
}
|
2021-05-04 03:25:02 -06:00
|
|
|
|
|
|
|
/* HELPERS */
|
2021-05-04 01:37:52 -06:00
|
|
|
.spacer {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.no-margin {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
.full-width {
|
|
|
|
display: block;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
|
2021-05-04 03:25:02 -06:00
|
|
|
/* LAYOUT */
|
2020-06-25 10:01:06 -06:00
|
|
|
header {
|
2021-11-05 09:28:38 -06:00
|
|
|
margin: 0 1.6rem 1.6rem;
|
|
|
|
}
|
|
|
|
header nav {
|
|
|
|
flex: 1;
|
2021-03-01 07:01:34 -07:00
|
|
|
display: flex;
|
2021-11-05 09:28:38 -06:00
|
|
|
flex-wrap: wrap;
|
2021-03-01 07:01:34 -07:00
|
|
|
align-items: center;
|
2021-11-05 09:28:38 -06:00
|
|
|
justify-content: center;
|
|
|
|
gap: 8px;
|
2020-07-15 06:03:50 -06:00
|
|
|
}
|
2021-11-05 09:28:38 -06:00
|
|
|
header nav a.logo {
|
2021-03-01 07:01:34 -07:00
|
|
|
width: 64px;
|
2021-06-07 03:47:09 -06:00
|
|
|
height: 64px;
|
2021-03-01 07:01:34 -07:00
|
|
|
font-size: 1.6rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--purple-700);
|
2020-07-15 06:03:50 -06:00
|
|
|
}
|
2021-11-05 09:28:38 -06:00
|
|
|
header nav a.logo img {
|
2021-03-01 07:01:34 -07:00
|
|
|
width: 100%;
|
2020-06-25 12:24:04 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
nav a.text {
|
2021-11-05 09:28:38 -06:00
|
|
|
/* font-size: 0.9em; */
|
2021-03-01 07:01:34 -07:00
|
|
|
margin: 0;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--purple-700);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2021-06-08 02:55:12 -06:00
|
|
|
nav a.text:hover, nav a.text:active {
|
2021-03-01 07:01:34 -07:00
|
|
|
color: #fff;
|
|
|
|
background-color: var(--purple-500);
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0 1.6rem;
|
2020-06-25 12:24:04 -06:00
|
|
|
}
|
2020-06-25 10:01:06 -06:00
|
|
|
footer {
|
2021-03-01 07:01:34 -07:00
|
|
|
margin: 4.8rem 0 0;
|
|
|
|
padding: 0 1.6rem 1.6rem;
|
|
|
|
background-color: var(--purple-900);
|
|
|
|
color: var(--purple-200);
|
2020-07-22 07:37:38 -06:00
|
|
|
}
|
2020-06-25 10:01:06 -06:00
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 720px;
|
|
|
|
margin: 0 auto;
|
2020-06-25 10:01:06 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
section.profile p, .demo p {
|
|
|
|
font-size: 1.2rem;
|
2020-06-25 12:31:57 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
.demo {
|
2021-11-05 09:28:38 -06:00
|
|
|
margin: 4.8rem auto;
|
2020-07-01 18:36:15 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
|
|
|
|
.card {
|
|
|
|
margin: 0 0 1.6rem;
|
2021-11-07 08:07:29 -07:00
|
|
|
padding: 0 1.2rem;
|
2021-03-01 07:01:34 -07:00
|
|
|
background-color: #fff;
|
|
|
|
background-color: var(--purple-50);
|
|
|
|
border: 2px solid var(--purple-200);
|
2021-05-04 01:37:52 -06:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.card.card--transparent {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2021-03-01 07:01:34 -07:00
|
|
|
}
|
|
|
|
.card--profileHeader {
|
|
|
|
display: flex;
|
2021-05-02 04:49:52 -06:00
|
|
|
flex-direction: column;
|
2021-03-01 07:01:34 -07:00
|
|
|
flex-wrap: wrap;
|
2021-05-02 04:49:52 -06:00
|
|
|
align-items: center;
|
|
|
|
gap: 24px;
|
2021-03-01 07:01:34 -07:00
|
|
|
}
|
|
|
|
.card--profileHeader p, .card--profileHeader small {
|
2021-05-02 04:49:52 -06:00
|
|
|
margin: 0;
|
2021-03-01 07:01:34 -07:00
|
|
|
}
|
|
|
|
.card--small-profile {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.card--small-profile-dummy {
|
|
|
|
opacity: 0.5;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.card--small-profile .name {
|
|
|
|
font-size: 1.4em;
|
|
|
|
}
|
|
|
|
.card--small-profile p {
|
|
|
|
margin-top: 0;
|
2021-11-07 08:07:29 -07:00
|
|
|
}
|
|
|
|
.card--small-profile p span.fingerprint {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2021-03-01 07:01:34 -07:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2021-11-07 08:07:29 -07:00
|
|
|
font-size: 0.8rem;
|
2021-03-01 07:01:34 -07:00
|
|
|
}
|
|
|
|
#profileName {
|
2021-05-02 04:49:52 -06:00
|
|
|
font-size: 1.6rem;
|
2021-03-01 07:01:34 -07:00
|
|
|
color: var(--grey-700);
|
2020-06-25 10:01:06 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
#profileURLFingerprint {
|
|
|
|
font-size: 1rem;
|
|
|
|
margin: 0 0 1.2rem;
|
2020-06-25 10:01:06 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
|
|
|
|
.hcards {
|
|
|
|
display: grid;
|
2021-11-07 08:07:29 -07:00
|
|
|
grid-gap: 1.2rem;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
2021-03-01 07:01:34 -07:00
|
|
|
margin-bottom: 1.6rem;
|
|
|
|
}
|
|
|
|
.hcards .card {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.hcards--col-1-2, .hcards--col-2-1 {
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
|
|
|
|
}
|
|
|
|
.hcards--col-1-2 .card, .hcards--col-2-1 .card {
|
|
|
|
grid-column: 1 / 2;
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
|
|
.hcards--max-3 {
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.hcards--col-1-2, .hcards--col-2-1 {
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 720px) {
|
|
|
|
.hcards--col-2-1 .card:nth-of-type(1) {
|
|
|
|
grid-column: 1 / -2;
|
|
|
|
}
|
|
|
|
.hcards--col-2-1 .card:nth-of-type(2) {
|
|
|
|
grid-column: -2 / -1;
|
|
|
|
}
|
|
|
|
.hcards--col-1-2 .card:nth-of-type(1) {
|
|
|
|
grid-column: 1 / 2;
|
|
|
|
}
|
|
|
|
.hcards--col-1-2 .card:nth-of-type(2) {
|
|
|
|
grid-column: 2 / -1;
|
|
|
|
}
|
|
|
|
}
|
2020-06-26 16:50:21 -06:00
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
.warning {
|
|
|
|
padding: calc(0.8rem - 2px) 0.8rem;
|
|
|
|
background-color: var(--yellow-200);
|
|
|
|
border: solid 2px var(--yellow-500);
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
.warning p:first-of-type {
|
|
|
|
margin-top: 0;
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
.warning p:last-of-type {
|
|
|
|
margin-bottom: 0;
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
|
|
|
|
2021-05-02 04:49:52 -06:00
|
|
|
kx-claim {
|
|
|
|
display: block;
|
|
|
|
margin: 12px 0;
|
2021-03-01 07:01:34 -07:00
|
|
|
}
|
|
|
|
|
2021-05-04 07:54:32 -06:00
|
|
|
#profileAvatar {
|
2021-03-01 07:01:34 -07:00
|
|
|
display: inline-block;
|
|
|
|
min-width: 96px;
|
|
|
|
max-width: 128px;
|
2021-05-02 04:49:52 -06:00
|
|
|
line-height: 0;
|
2021-03-01 07:01:34 -07:00
|
|
|
text-align: center;
|
2021-05-02 04:49:52 -06:00
|
|
|
border-radius: 50%;
|
2020-06-30 00:32:15 -06:00
|
|
|
}
|
2020-12-25 19:38:41 -07:00
|
|
|
|
2021-05-04 01:37:52 -06:00
|
|
|
/* TYPOGRAPHY */
|
2021-03-01 07:01:34 -07:00
|
|
|
h1 {
|
|
|
|
font-size: 1.6em;
|
|
|
|
margin: 3.2rem 0 1.6rem;
|
|
|
|
font-weight: normal;
|
2021-04-05 08:08:35 -06:00
|
|
|
color: var(--purple-700);
|
2021-03-01 07:01:34 -07:00
|
|
|
cursor: default;
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
h2 {
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin: 3.2rem 0 1.6rem;
|
|
|
|
font-weight: normal;
|
2021-04-05 08:08:35 -06:00
|
|
|
color: var(--purple-700);
|
2021-03-01 07:01:34 -07:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
h2 small {
|
|
|
|
margin-left: 0.8rem;
|
|
|
|
padding: 3px 6px;
|
2021-04-05 08:08:35 -06:00
|
|
|
background-color: var(--purple-600);
|
2021-03-01 07:01:34 -07:00
|
|
|
color: #fff;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
margin: 1.6rem 0;
|
|
|
|
font-size: 1.3em;
|
|
|
|
line-height: 1.6rem;
|
2021-03-30 08:22:03 -06:00
|
|
|
color: var(--grey-700);
|
2021-03-01 07:01:34 -07:00
|
|
|
font-weight: normal;
|
|
|
|
/* text-align: center; */
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
h3 small {
|
|
|
|
margin-left: 0.8rem;
|
|
|
|
padding: 3px 6px;
|
|
|
|
background-color: var(--purple-400);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
h4 {
|
2021-03-30 08:22:03 -06:00
|
|
|
margin: 1.6rem 0;
|
|
|
|
font-size: 1em;
|
2021-03-01 07:01:34 -07:00
|
|
|
line-height: 1.6rem;
|
2021-03-30 08:22:03 -06:00
|
|
|
color: var(--grey-600);
|
|
|
|
/* color: var(--purple-700); */
|
|
|
|
font-weight: bold;
|
2021-03-01 07:01:34 -07:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
h4 small {
|
|
|
|
margin-left: 0.8rem;
|
|
|
|
padding: 3px 6px;
|
|
|
|
background-color: var(--purple-400);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 4px;
|
2020-12-25 19:46:56 -07:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
p {
|
|
|
|
margin: 1.6rem 0;
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
2021-03-30 08:22:03 -06:00
|
|
|
p.warning {
|
|
|
|
padding: 8px;
|
|
|
|
background-color: #fffadc;
|
|
|
|
border: solid 1px #ffeea8;
|
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
a {
|
|
|
|
color: var(--blue-700);
|
2020-07-23 02:36:42 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
ul {
|
|
|
|
padding-left: 1em;
|
|
|
|
list-style: '- ';
|
|
|
|
}
|
|
|
|
main h1:first-of-type {
|
|
|
|
margin-top: 1.6rem;
|
|
|
|
}
|
|
|
|
footer h1 {
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
color: var(--purple-200);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: bold;
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
footer a {
|
2021-06-07 03:47:09 -06:00
|
|
|
display: inline-block;
|
2021-03-01 07:01:34 -07:00
|
|
|
color: var(--purple-100);
|
2021-06-07 06:25:10 -06:00
|
|
|
height: 32px;
|
2021-01-07 08:44:33 -07:00
|
|
|
}
|
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
code {
|
2021-03-30 08:22:03 -06:00
|
|
|
padding: 2px 4px;
|
2021-03-01 07:01:34 -07:00
|
|
|
background-color: var(--purple-100);
|
|
|
|
border: 1px solid var(--purple-500);
|
2020-07-02 14:39:56 -06:00
|
|
|
}
|
2021-03-01 07:01:34 -07:00
|
|
|
pre {
|
|
|
|
padding: 8px 12px;
|
|
|
|
background-color: var(--purple-100);
|
|
|
|
border: 1px solid var(--purple-500);
|
2021-03-30 08:22:03 -06:00
|
|
|
overflow-x: auto;
|
2021-03-01 07:01:34 -07:00
|
|
|
line-height: 1.2rem;
|
2021-03-30 08:22:03 -06:00
|
|
|
font-size: 1rem;
|
2021-03-01 07:01:34 -07:00
|
|
|
}
|
|
|
|
pre code {
|
|
|
|
padding: 0;
|
|
|
|
background-color: 0px;
|
|
|
|
border: 0px;
|
2021-01-10 07:11:44 -07:00
|
|
|
}
|
|
|
|
|
2021-05-04 01:37:52 -06:00
|
|
|
#qr {
|
|
|
|
display: block;
|
|
|
|
width: 100% !important;
|
|
|
|
max-width: 256px !important;
|
|
|
|
height: auto !important;
|
|
|
|
margin: 0 auto 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FORM ELEMENTS */
|
|
|
|
.form-wrapper {
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 1.4rem;
|
|
|
|
padding-bottom: 1.6rem;
|
|
|
|
margin-bottom: 48px;
|
|
|
|
}
|
|
|
|
.form-wrapper form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.form-wrapper h2 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
form input[type="text"], form input[type="search"] {
|
|
|
|
margin: 8px 0;
|
2021-06-09 02:25:16 -06:00
|
|
|
padding: 4px;
|
|
|
|
border: 1px solid #444;
|
|
|
|
font-size: 0.9rem;
|
2021-05-04 01:37:52 -06:00
|
|
|
}
|
|
|
|
form textarea {
|
2021-03-01 07:01:34 -07:00
|
|
|
width: 100%;
|
|
|
|
height: 128px;
|
2021-05-04 01:37:52 -06:00
|
|
|
margin: 8px 0;
|
2021-03-01 07:01:34 -07:00
|
|
|
resize: vertical;
|
|
|
|
font-size: 0.9rem;
|
2021-06-08 02:55:12 -06:00
|
|
|
border: 1px solid #444;
|
2020-06-26 16:50:21 -06:00
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
.button-wrapper {
|
2021-05-04 01:37:52 -06:00
|
|
|
display: flex;
|
2021-05-04 03:44:41 -06:00
|
|
|
flex-wrap: wrap;
|
2021-05-04 01:37:52 -06:00
|
|
|
gap: 8px;
|
2021-06-10 06:30:56 -06:00
|
|
|
margin: 8px 0;
|
2021-03-29 09:08:48 -06:00
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
.radio-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-05-04 01:37:52 -06:00
|
|
|
margin: 8px 0;
|
2021-03-29 09:08:48 -06:00
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
.radio-wrapper input[type="radio"] {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: -1;
|
2021-03-29 09:08:48 -06:00
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
.radio-wrapper input[type="radio"] + label {
|
|
|
|
margin: 0;
|
2021-05-04 01:37:52 -06:00
|
|
|
padding: 2px 8px;
|
2021-04-05 07:51:43 -06:00
|
|
|
background-color: #fff;
|
2021-06-10 06:30:56 -06:00
|
|
|
border: solid var(--purple-400);
|
|
|
|
border-width: 2px 1px;
|
2021-04-05 07:51:43 -06:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
.radio-wrapper input[type="radio"]:first-of-type + label {
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
border-left-width: 2px;
|
|
|
|
}
|
|
|
|
.radio-wrapper input[type="radio"]:last-of-type + label {
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
border-right-width: 2px;
|
|
|
|
}
|
|
|
|
.radio-wrapper input[type="radio"]:focus + label {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.radio-wrapper input[type="radio"] + label:hover {
|
2021-05-04 01:37:52 -06:00
|
|
|
background-color: var(--purple-100);
|
2021-06-10 06:30:56 -06:00
|
|
|
border-color: var(--purple-500);
|
2021-05-04 01:37:52 -06:00
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
.radio-wrapper input[type="radio"]:checked + label {
|
2021-05-04 01:37:52 -06:00
|
|
|
color: #fff;
|
2021-06-07 03:47:09 -06:00
|
|
|
background-color: var(--purple-600);
|
2021-06-10 06:30:56 -06:00
|
|
|
border-color: var(--purple-600);
|
2021-05-04 01:37:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="button"], input[type="submit"], button, a.button {
|
2021-05-04 03:18:18 -06:00
|
|
|
display: inline-block;
|
2021-05-04 01:37:52 -06:00
|
|
|
min-height: 36px;
|
|
|
|
margin: 8px 0;
|
|
|
|
padding: 4px 8px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 0.9rem;
|
2021-03-01 07:01:34 -07:00
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
2021-05-04 01:37:52 -06:00
|
|
|
color: #333;
|
2021-03-01 07:01:34 -07:00
|
|
|
background-color: #fff;
|
2021-05-04 01:37:52 -06:00
|
|
|
border: solid 2px var(--purple-400);
|
2021-03-01 07:01:34 -07:00
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-06-10 06:30:56 -06:00
|
|
|
input[type="button"]:focus, input[type="submit"]:focus, button:focus, a.button:focus {
|
|
|
|
background-color: azure;
|
|
|
|
}
|
2021-05-04 01:37:52 -06:00
|
|
|
input[type="button"]:hover, input[type="submit"]:hover, button:hover, a.button:hover {
|
|
|
|
background-color: var(--purple-500);
|
|
|
|
border-color: var(--purple-500);
|
2021-03-01 07:01:34 -07:00
|
|
|
color: #fff;
|
2021-03-29 09:08:48 -06:00
|
|
|
}
|
2021-05-04 03:18:18 -06:00
|
|
|
a.button i {
|
|
|
|
font-size: 1.4em;
|
|
|
|
}
|
|
|
|
a.button.button--liberapay {
|
|
|
|
padding: 8px 16px;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
color: #333;
|
|
|
|
background-color: #ffee16;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
a.button.button--liberapay:hover {
|
|
|
|
background-color: #fff463;
|
|
|
|
}
|
2021-03-30 08:22:03 -06:00
|
|
|
|
2021-05-04 01:37:52 -06:00
|
|
|
/* DIALOGS */
|
2021-03-30 08:22:03 -06:00
|
|
|
dialog {
|
|
|
|
width: 100% !important;
|
|
|
|
max-width: 800px !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
word-wrap: anywhere;
|
|
|
|
}
|
|
|
|
dialog > div {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
dialog form[method="Dialog"] {
|
2021-05-04 01:37:52 -06:00
|
|
|
margin: 1em 0 0 !important;
|
2021-03-30 08:22:03 -06:00
|
|
|
}
|
|
|
|
dialog form[method="Dialog"] input {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
dialog p {
|
|
|
|
font-size: 1rem !important;
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
|
|
|
dialog p:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2021-05-04 05:57:33 -06:00
|
|
|
|
|
|
|
/* KX-ITEM */
|
|
|
|
.kx-item details {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
.kx-item details p {
|
|
|
|
margin: 0;
|
|
|
|
word-break: break-word;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.kx-item details a {
|
|
|
|
color: var(--blue-700);
|
|
|
|
}
|
|
|
|
.kx-item details hr {
|
|
|
|
border: none;
|
|
|
|
border-top: 2px solid var(--purple-100);
|
|
|
|
}
|
|
|
|
.kx-item details .content {
|
|
|
|
padding: 12px;
|
|
|
|
border: solid 3px var(--purple-100);
|
|
|
|
border-top: 0px;
|
|
|
|
border-radius: 0px 0px 8px 8px;
|
|
|
|
}
|
|
|
|
.kx-item details summary {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 12px;
|
|
|
|
background-color: var(--purple-100);
|
|
|
|
border: solid 3px var(--purple-100);
|
|
|
|
border-radius: 8px;
|
|
|
|
list-style: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.kx-item details summary::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.kx-item details summary:hover, summary:focus {
|
|
|
|
border-color: var(--purple-400);
|
|
|
|
}
|
|
|
|
details[open] summary {
|
|
|
|
border-radius: 8px 8px 0px 0px;
|
|
|
|
}
|
|
|
|
.kx-item details summary .info {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.kx-item details summary .info .title {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
.kx-item details summary .claim__description p {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
|
|
|
.kx-item details summary .claim__links p, p.subtle-links {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: var(--grey-700);
|
|
|
|
}
|
|
|
|
.kx-item details summary .claim__links a, summary .claim__links span, p.subtle-links a {
|
|
|
|
font-size: 1rem;
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
color: var(--grey-700);
|
|
|
|
}
|
|
|
|
.kx-item details summary .subtitle {
|
|
|
|
color: var(--purple-700);
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 100%;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 2rem;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus::after {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus .inProgress {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.4s ease;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus[data-value="success"] {
|
|
|
|
content: "v";
|
|
|
|
background-color: var(--green-600);
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus[data-value="success"]::after {
|
|
|
|
content: "✔";
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus[data-value="failed"] {
|
|
|
|
background-color: var(--red-400);
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus[data-value="failed"]::after {
|
|
|
|
content: "✕";
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus[data-value="running"] .inProgress {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kx-item details .subsection {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 16px;
|
|
|
|
}
|
|
|
|
.kx-item details .subsection > img {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kx-item details .inProgress {
|
|
|
|
font-size: 10px;
|
|
|
|
margin: 50px auto;
|
|
|
|
text-indent: -9999em;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: var(--purple-400);
|
|
|
|
background: -moz-linear-gradient(left, var(--purple-400) 10%, rgba(255, 255, 255, 0) 42%);
|
|
|
|
background: -webkit-linear-gradient(left, var(--purple-400) 10%, rgba(255, 255, 255, 0) 42%);
|
|
|
|
background: -o-linear-gradient(left, var(--purple-400) 10%, rgba(255, 255, 255, 0) 42%);
|
|
|
|
background: -ms-linear-gradient(left, var(--purple-400) 10%, rgba(255, 255, 255, 0) 42%);
|
|
|
|
background: linear-gradient(to right, var(--purple-400) 10%, rgba(255, 255, 255, 0) 42%);
|
|
|
|
position: relative;
|
|
|
|
-webkit-animation: load3 1.4s infinite linear;
|
|
|
|
animation: load3 1.4s infinite linear;
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
-ms-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
.kx-item details .inProgress:before {
|
|
|
|
width: 50%;
|
|
|
|
height: 50%;
|
|
|
|
background: var(--purple-400);
|
|
|
|
border-radius: 100% 0 0 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
.kx-item details .inProgress:after {
|
|
|
|
background: var(--purple-100);
|
|
|
|
width: 65%;
|
|
|
|
height: 65%;
|
|
|
|
border-radius: 50%;
|
|
|
|
content: '';
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.kx-item details button {
|
|
|
|
padding: 0.4rem 0.8rem;
|
|
|
|
margin-right: 8px;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
background-color: #fff;
|
|
|
|
border: solid 2px var(--purple-400);
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.kx-item details button:hover {
|
|
|
|
background-color: var(--purple-500);
|
|
|
|
border-color: var(--purple-500);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 640px) {
|
|
|
|
.kx-item details summary .claim__description p {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
.kx-item details summary .claim__links a, p.subtle-links a {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
summary .claim__description p {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.kx-item details summary .verificationStatus {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
font-size: 1.6rem;
|
|
|
|
}
|
|
|
|
.kx-item details .inProgress {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes load3 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes load3 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|