Skip to content

Commit

Permalink
mostrar datos de las simulaciones
Browse files Browse the repository at this point in the history
  • Loading branch information
fermelli committed Jan 12, 2022
1 parent 3f8ddd2 commit e9e8225
Show file tree
Hide file tree
Showing 8 changed files with 387 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<title>Simulación de Control de Temperatura</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
Expand Down
22 changes: 22 additions & 0 deletions public/feather-sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
218 changes: 218 additions & 0 deletions public/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,40 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-backdrop-sepia: ;
}

.container {
width: 100%;
}

@media (min-width: 640px) {
.container {
max-width: 640px;
}
}

@media (min-width: 768px) {
.container {
max-width: 768px;
}
}

@media (min-width: 1024px) {
.container {
max-width: 1024px;
}
}

@media (min-width: 1280px) {
.container {
max-width: 1280px;
}
}

@media (min-width: 1536px) {
.container {
max-width: 1536px;
}
}

.absolute {
position: absolute;
}
Expand All @@ -480,6 +514,18 @@ Ensure the default browser behavior of the `hidden` attribute.
bottom: 0px;
}

.bottom-4 {
bottom: 1rem;
}

.right-4 {
right: 1rem;
}

.bottom-24 {
bottom: 6rem;
}

.row-span-full {
grid-row: 1 / -1;
}
Expand Down Expand Up @@ -563,6 +609,30 @@ Ensure the default browser behavior of the `hidden` attribute.
height: 2rem;
}

.h-24 {
height: 6rem;
}

.h-20 {
height: 5rem;
}

.h-16 {
height: 4rem;
}

.h-12 {
height: 3rem;
}

.h-\[calc\(100vh_-_4rem\)\] {
height: calc(100vh - 4rem);
}

.h-36 {
height: 9rem;
}

.w-full {
width: 100%;
}
Expand All @@ -579,6 +649,18 @@ Ensure the default browser behavior of the `hidden` attribute.
width: 2.5rem;
}

.w-24 {
width: 6rem;
}

.w-20 {
width: 5rem;
}

.w-16 {
width: 4rem;
}

.transform {
transform: translate(var(--tw-translate-x), 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));
}
Expand Down Expand Up @@ -607,6 +689,14 @@ Ensure the default browser behavior of the `hidden` attribute.
grid-template-columns: 480px 1fr 320px;
}

.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-rows-1 {
grid-template-rows: repeat(1, minmax(0, 1fr));
}
Expand All @@ -615,6 +705,14 @@ Ensure the default browser behavior of the `hidden` attribute.
grid-template-rows: 1fr 2fr;
}

.grid-rows-3 {
grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
grid-template-rows: repeat(4, minmax(0, 1fr));
}

.flex-wrap {
flex-wrap: wrap;
}
Expand All @@ -631,6 +729,14 @@ Ensure the default browser behavior of the `hidden` attribute.
justify-content: center;
}

.justify-between {
justify-content: space-between;
}

.gap-4 {
gap: 1rem;
}

.gap-x-8 {
-moz-column-gap: 2rem;
column-gap: 2rem;
Expand All @@ -641,6 +747,15 @@ Ensure the default browser behavior of the `hidden` attribute.
column-gap: 1rem;
}

.gap-x-2 {
-moz-column-gap: 0.5rem;
column-gap: 0.5rem;
}

.overflow-auto {
overflow: auto;
}

.whitespace-nowrap {
white-space: nowrap;
}
Expand All @@ -653,14 +768,26 @@ Ensure the default browser behavior of the `hidden` attribute.
border-radius: 9999px;
}

.rounded-2xl {
border-radius: 1rem;
}

.border {
border-width: 1px;
}

.border-2 {
border-width: 2px;
}

.border-t-4 {
border-top-width: 4px;
}

.border-b {
border-bottom-width: 1px;
}

.border-slate-800 {
--tw-border-opacity: 1;
border-color: rgb(30 41 59 / var(--tw-border-opacity));
Expand All @@ -671,6 +798,11 @@ Ensure the default browser behavior of the `hidden` attribute.
border-color: rgb(107 114 128 / var(--tw-border-opacity));
}

.border-slate-600 {
--tw-border-opacity: 1;
border-color: rgb(71 85 105 / var(--tw-border-opacity));
}

.border-t-slate-800 {
--tw-border-opacity: 1;
border-top-color: rgb(30 41 59 / var(--tw-border-opacity));
Expand Down Expand Up @@ -711,6 +843,24 @@ Ensure the default browser behavior of the `hidden` attribute.
background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}

.bg-red-300 {
--tw-bg-opacity: 1;
background-color: rgb(252 165 165 / var(--tw-bg-opacity));
}

.bg-slate-800 {
--tw-bg-opacity: 1;
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}

.fill-white {
fill: #fff;
}

.fill-slate-800 {
fill: #1e293b;
}

.p-4 {
padding: 1rem;
}
Expand All @@ -719,6 +869,10 @@ Ensure the default browser behavior of the `hidden` attribute.
padding: 2rem;
}

.p-16 {
padding: 4rem;
}

.px-4 {
padding-left: 1rem;
padding-right: 1rem;
Expand All @@ -744,6 +898,18 @@ Ensure the default browser behavior of the `hidden` attribute.
padding-bottom: 0.5rem;
}

.pb-2 {
padding-bottom: 0.5rem;
}

.pt-2 {
padding-top: 0.5rem;
}

.pt-4 {
padding-top: 1rem;
}

.text-center {
text-align: center;
}
Expand Down Expand Up @@ -778,6 +944,11 @@ Ensure the default browser behavior of the `hidden` attribute.
line-height: 1rem;
}

.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}

.font-bold {
font-weight: 700;
}
Expand Down Expand Up @@ -836,11 +1007,40 @@ Ensure the default browser behavior of the `hidden` attribute.
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.hover\:border-slate-200:hover {
--tw-border-opacity: 1;
border-color: rgb(226 232 240 / var(--tw-border-opacity));
}

.hover\:border-slate-400:hover {
--tw-border-opacity: 1;
border-color: rgb(148 163 184 / var(--tw-border-opacity));
}

.hover\:bg-\[\#103e53\]:hover {
--tw-bg-opacity: 1;
background-color: rgb(16 62 83 / var(--tw-bg-opacity));
}

.hover\:bg-slate-400:hover {
--tw-bg-opacity: 1;
background-color: rgb(148 163 184 / var(--tw-bg-opacity));
}

.hover\:bg-slate-200:hover {
--tw-bg-opacity: 1;
background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}

.hover\:bg-slate-800:hover {
--tw-bg-opacity: 1;
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}

.hover\:fill-white:hover {
fill: #fff;
}

.disabled\:cursor-not-allowed:disabled {
cursor: not-allowed;
}
Expand All @@ -858,3 +1058,21 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-text-opacity: 1;
color: rgb(156 163 175 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
.sm\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (min-width: 768px) {
.md\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (min-width: 1024px) {
.lg\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
Loading

0 comments on commit e9e8225

Please sign in to comment.