File size: 2,228 Bytes
f94b187 b16d75f f94b187 b16d75f 98eac4a b16d75f e158b55 b16d75f e158b55 98eac4a e51e7d3 60bfaec e51e7d3 f94b187 98eac4a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
:root {
--primary-color: rgba(26, 109, 255, 1);
}
@import url("https://fonts.cdnfonts.com/css/inter");
body {
font-family: "Inter", sans-serif;
}
#head {
padding-top: 1rem;
border-bottom: 1px solid rgba(227, 234, 240, 1);
}
h1 {
font-weight: 600;
font-size: 26px;
}
p {
font-weight: 400;
font-size: 16px;
line-height: 24px;
}
.badge.bg-secondary {
background-color: rgba(247, 249, 250, 1) !important;
border-color: rgba(215, 220, 224, 1);
border: 1px solid rgba(215, 220, 224, 1);
color: rgba(86, 104, 122, 1);
text-transform: uppercase;
font-size: 12px;
padding: 7px;
position: relative;
top: -0.5rem;
left: 1rem;
}
.tabs div {
margin-right: 1rem;
cursor: pointer;
}
.tabs div.active {
border-bottom: 3px solid var(--primary-color);
}
.right-column {
flex: 0 0 465px;
margin: 1rem;
}
.image-container {
margin: 2rem 1rem 0 0;
background: rgba(247, 249, 250, 1);
display: flex;
justify-content: center;
height: 35rem;
}
.image-container img {
align-self: start;
width: 100%;
height: auto;
}
.image-container .placeholder,
.image-container .spinner {
width: 48px;
height: 48px;
align-self: center;
}
#body .container > .row > .col:first-child {
border-right: 1px solid rgba(227, 234, 240, 1);
}
.custom-select {
position: relative;
}
.custom-select::after {
--size: 0.4rem;
content: "";
position: absolute;
right: 1rem;
pointer-events: none;
border-left: var(--size) solid transparent;
border-right: var(--size) solid transparent;
border-top: var(--size) solid black;
top: 30%;
}
label {
font-size: 14px;
font-weight: 600;
}
label.form-check-label {
font-weight: 400;
}
.btn-primary {
width: 100%;
}
.display-verify {
display: none;
}
img.thumbnail {
width:100px;
height:100px;
}
#original-image {
border-bottom: 1px solid rgba(227, 234, 240, 1);
display: none;
}
#resultLabel {
display:none;
}
.action-menu {
display: none;
}
.action-menu button, .action-menu a.btn {
width: 175px;
}
.action-menu .btn {
border-radius: 0;
color: var(--primary-color);
border-color: var(--primary-color);
}
.action-menu .btn:hover {
background-color: transparent;
color: var(--primary-color);
} |