three.cad/app.css

377 lines
5.1 KiB
CSS
Raw Normal View History

2021-04-19 07:30:59 +00:00
.bg-transparent {
background-color: transparent;
}
2021-04-10 23:21:45 +00:00
.bg-gray-700 {
2021-04-08 04:39:38 +00:00
--tw-bg-opacity: 1;
2021-04-10 23:21:45 +00:00
background-color: rgba(64, 64, 64, var(--tw-bg-opacity));
}
.bg-gray-800 {
--tw-bg-opacity: 1;
background-color: rgba(38, 38, 38, var(--tw-bg-opacity));
2021-04-08 04:39:38 +00:00
}
2021-04-17 21:08:42 +00:00
.border-gray-50 {
--tw-border-opacity: 1;
border-color: rgba(250, 250, 250, var(--tw-border-opacity));
}
2021-04-19 07:30:59 +00:00
.border-0 {
border-width: 0px;
}
2021-04-17 21:08:42 +00:00
.border-t-0 {
border-top-width: 0px;
}
.border-r-0 {
border-right-width: 0px;
}
.border-l-0 {
border-left-width: 0px;
}
.border-b {
border-bottom-width: 1px;
}
2021-04-08 04:39:38 +00:00
.flex {
display: flex;
}
.table {
display: table;
}
.flex-col {
flex-direction: column;
}
.items-center {
align-items: center;
}
2021-04-10 23:21:45 +00:00
.justify-start {
justify-content: flex-start;
}
2021-04-17 21:08:42 +00:00
.justify-end {
justify-content: flex-end;
}
2021-04-08 04:39:38 +00:00
.justify-center {
justify-content: center;
}
2021-04-17 21:08:42 +00:00
.flex-1 {
flex: 1 1 0%;
}
.flex-none {
flex: none;
}
2021-04-10 23:21:45 +00:00
.h-7 {
height: 1.75rem;
2021-04-08 04:39:38 +00:00
}
2021-04-19 07:30:59 +00:00
.h-9 {
height: 2.25rem;
}
2021-04-08 04:39:38 +00:00
.h-full {
height: 100%;
}
2021-04-10 23:21:45 +00:00
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
2021-04-19 07:30:59 +00:00
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.mx-1 {
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.mr-2 {
margin-right: 0.5rem;
}
2021-04-17 21:08:42 +00:00
.mr-6 {
margin-right: 1.5rem;
}
2021-04-10 23:21:45 +00:00
.ml-auto {
margin-left: auto;
}
2021-04-19 07:30:59 +00:00
.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px;
}
2021-04-10 23:21:45 +00:00
.p-1 {
padding: 0.25rem;
}
.p-3 {
padding: 0.75rem;
}
.p-1\.5 {
padding: 0.375rem;
}
.p-3\.5 {
padding: 0.875rem;
}
.pl-1 {
padding-left: 0.25rem;
2021-04-08 04:39:38 +00:00
}
* {
--tw-shadow: 0 0 #0000;
}
* {
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgba(59, 130, 246, 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
}
2021-04-17 21:08:42 +00:00
.text-gray-50 {
--tw-text-opacity: 1;
color: rgba(250, 250, 250, var(--tw-text-opacity));
}
2021-04-10 23:21:45 +00:00
.select-none {
user-select: none;
}
2021-04-08 04:39:38 +00:00
.visible {
visibility: visible;
}
2021-04-17 21:08:42 +00:00
.w-16 {
width: 4rem;
}
2021-04-08 04:39:38 +00:00
.w-auto {
width: auto;
}
.w-full {
width: 100%;
}
2021-04-15 05:15:32 +00:00
.transform {
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
2021-04-08 04:39:38 +00:00
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}
@keyframes pulse {
50% {
opacity: .5;
}
}
@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}
50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}
* {
box-sizing: border-box;
}
body {
margin: 0;
height: 100%;
font-family: sans-serif;
overflow: hidden;
2021-04-17 21:08:42 +00:00
--topNavH: 3rem;
--sideNavW: 15rem;
2021-04-08 04:39:38 +00:00
}
#c {
position: absolute;
width: calc(100% - var(--sideNavW));
height: calc(100% - var(--topNavH));
bottom: 0;
right: 0;
}
.topNav {
position: absolute;
height: var(--topNavH);
left:0;
right:0;
top:0;
}
.sideNav {
position: absolute;
top: var(--topNavH);
left: 0;
bottom: 0;
width: var(--sideNavW);
}
2021-04-17 21:08:42 +00:00
.dialog {
position: absolute;
height: var(--topNavH);
left:0;
right:0;
top:0;
}
2021-04-08 04:39:38 +00:00
#labels > div {
position: absolute;
2021-04-10 23:21:45 +00:00
color: white;
2021-04-08 04:39:38 +00:00
}
.btn {
cursor: pointer;
2021-04-10 23:21:45 +00:00
background-color: transparent;
2021-04-08 04:39:38 +00:00
}
.btn:hover {
--tw-bg-opacity: 1;
2021-04-11 00:01:16 +00:00
background-color: rgba(115, 115, 115, var(--tw-bg-opacity));
2021-04-08 04:39:38 +00:00
}
.btn {
fill: currentColor;
--tw-text-opacity: 1;
2021-04-10 23:21:45 +00:00
color: rgba(229, 229, 229, var(--tw-text-opacity));
2021-04-08 04:39:38 +00:00
}
.btn:hover {
--tw-text-opacity: 1;
2021-04-10 23:21:45 +00:00
color: rgba(229, 229, 229, var(--tw-text-opacity));
}
2021-04-19 07:30:59 +00:00
.active-btn {
cursor: pointer;
--tw-bg-opacity: 1;
background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
fill: currentColor;
--tw-text-opacity: 1;
color: rgba(229, 229, 229, var(--tw-text-opacity))
}
2021-04-10 23:21:45 +00:00
.btn-green {
cursor: pointer;
background-color: transparent;
}
.btn-green:hover {
background-color: transparent;
}
.btn-green {
fill: currentColor;
--tw-text-opacity: 1;
color: rgba(229, 229, 229, var(--tw-text-opacity));
}
.btn-green:hover {
--tw-text-opacity: 1;
2021-04-11 00:01:16 +00:00
color: rgba(52, 211, 153, var(--tw-text-opacity));
2021-04-08 04:39:38 +00:00
}
.tooltip {
position: fixed;
display: block;
background-color: black;
color: #fff;
text-align: center;
border-radius: 4px;
padding: 4px;
visibility: hidden;
2021-04-10 23:21:45 +00:00
border: solid 1px white;
2021-04-08 04:39:38 +00:00
}
.arrow {
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -6px;
border: solid 6px transparent;
2021-04-10 23:21:45 +00:00
border-bottom-color: white;
2021-04-08 04:39:38 +00:00
border-top: none;
}
2021-04-17 21:08:42 +00:00
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
/* border:none; */
background-color:transparent;
outline: none;
text-align:right;
}
/* input:focus[type=number] { */
/* } */
2021-04-08 04:39:38 +00:00
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
2021-04-17 21:08:42 +00:00