pkg-components
Version:
486 lines (408 loc) • 8.45 kB
CSS
a#tv-attr-logo {
display: none;
}
/* Container for the table */
.table-container {
position: relative;
width: 200px; /* default size for the table */
height: 200px; /* default size for the table */
border-radius: 50%; /* Round table */
background-color: #ddd; /* Light gray for the table */
margin: 50px auto; /* Centering the table */
}
/* Each seat around the table */
.seat {
position: absolute;
width: 30px;
height: 30px;
background-color: #ff7b00; /* Seat color */
border-radius: 50%; /* Seat shape */
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
}
/* When the table becomes large, it should have a bigger size */
.table-container.large {
width: 300px;
height: 300px;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote {
margin: 0;
padding: 0;
width: 100%;
text-align: start;
}
/* Normalizes font-size for headers */
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal;
}
/* Removes list-style from lists */
ol,
ul {
list-style: none;
}
button {
outline: none;
border: none;
}
a {
text-decoration: none;
}
/* Normalizes font-style and font-weight to normal */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
font-style: normal;
font-weight: normal;
}
/* Removes spacing in tables */
table {
border-collapse: collapse;
border-spacing: 0;
width: -webkit-fill-available;
}
/* Removes border from fieldset and img */
fieldset,
img {
border: 0;
}
/* Left-aligns text in caption and th */
caption,
th {
text-align: left;
}
/* Removes quotation marks from q */
q:before,
q:after {
content: '';
}
/* Fin de Hoja de Normalización */
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif, 'PFont-Regular';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale PFont-Light;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
-webkit-appearance: none;
opacity: 0;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
@font-face {
font-family: PFont-Bold;
src: url('../public/fonts/Poppins-Bold.ttf')
}
@font-face {
font-family: PFont-Medium;
src: url('../public/fonts/Poppins-Medium.ttf')
}
@font-face {
font-family: PFont-Regular;
src: url('../public/fonts/RCTextos-Light.woff2')
}
@font-face {
font-family: PFont-Light;
src: url('../public/fonts/Poppins-Light.ttf')
}
/* swiper */
.swiper-pagination-bullet {
background: var(--color-base-white);
opacity: 0.5;
}
.swiper-pagination-bullets {
top: -15px;
}
.swiper-horizontal * .swiper-pagination-bullet-active {
background-color: var(--color-primary-red) ;
}
.swiper-horizontal>.swiper-pagination-bullet {
background-color: var(--color-text-gray-light) ;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
bottom: -3px ;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
background-color: rgba(0,0,0,.4);
border-radius: 50%;
height: 40px ;
width: 40px ;
min-width: 40px ;
justify-content: center;
display: flex;
align-items: center;
font-size: var(--font-size-sm) ;
color: var(--color-base-white) ;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
background-color: rgba(0,0,0,.4);
border-radius: 50%;
height: 40px ;
width: 40px ;
min-width: 40px ;
justify-content: center;
display: flex;
align-items: center;
font-size: var(--font-size-sm) ;
color: var(--color-base-white) ;
}
.swiper-slide {
width: auto ;
overflow: visible;
}
* {
box-sizing: border-box;
scroll-behavior: smooth;
}
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
background-color: var(--color-base-white);
}
input::-webkit-calendar-picker-indicator{
display: block;
}
input[type="time"]::-webkit-input-placeholder{
visibility: visible ;
}
input[type=time] {
border: none;
color: #2a2c2d;
font-size: 14px;
font-family: helvetica;
width: 100px;
outline: none;
}
/* Wrapper around the hour, minute, second, and am/pm fields as well as
the up and down buttons and the 'X' button */
input[type=time]::-webkit-datetime-edit-fields-wrapper {
display: flex;
}
/* The space between the fields - between hour and minute, the minute and
second, second and am/pm */
input[type=time]::-webkit-datetime-edit-text {
padding: 19px 4px;
}
/* Hour */
input[type=time]::-webkit-datetime-edit-hour-field {
background-color: #f2f4f5;
border-radius: 15%;
padding: 19px 13px;
color: #000;
}
/* Minute */
input[type=time]::-webkit-datetime-edit-minute-field {
background-color: #f2f4f5;
border-radius: 15%;
color: #000;
padding: 19px 13px;
}
/* AM/PM */
input[type=time]::-webkit-datetime-edit-ampm-field {
background-color: #f2f4f5;
border-radius: 15%;
color: #000000;
padding: 19px 13px;
/* here */
display: block;
font-size: 20px;
}
input[type="time"]::-webkit-calendar-picker-indicator {
filter: invert(0.5) sepia(2) saturate(5) hue-rotate(175deg);
/* color: ${PColor}; */
font-size: 30px;
}
/* 'X' button for resetting/clearing time */
input[type=time]::-webkit-clear-button {
display: none;
}
/* Up/Down arrows for incrementing/decrementing the value */
/* input[ ]::-webkit-inner-spin-button {
display: none;
} */
body {
margin: 0;
transition: .3s;
font-family: 'PFont-Regular';
}
main {
display: block;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
word-break: break-word;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
pre {
font-family: monospace, monospace;
font-size: 1em;
}
a {
background-color: transparent;
word-break: break-word;
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
button,
input {
overflow: visible;
}
button,
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
padding: 0.35em 0.75em 0.625em;
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
}
progress {
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
input[type="checkbox"] {
flex: 1;
justify-content: "flex-end";
zoom: 2;
transform: scale(1.2);
transform-origin: 0 0;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
details {
display: block;
}
summary {
display: list-item;
}
template {
display: none;
}
[hidden] {
display: none;
}