2023-10-20 17:05:39 +01:00
|
|
|
@import "~src/function.scss";
|
2020-12-30 11:44:19 +01:00
|
|
|
|
2023-03-07 11:48:38 +01:00
|
|
|
:host {
|
|
|
|
|
// mobile
|
|
|
|
|
background: var(--background-mobile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// desktop
|
|
|
|
|
@media only screen and (min-width: 1365px) {
|
|
|
|
|
// set color to body
|
|
|
|
|
:host {
|
|
|
|
|
// mobile
|
|
|
|
|
background: var(--background-desktop) !important ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-18 23:32:12 +01:00
|
|
|
/* HEADER */
|
2023-10-20 17:05:39 +01:00
|
|
|
.bg-blue {
|
|
|
|
|
--background: #0782c9;
|
|
|
|
|
background: #0782c9;
|
|
|
|
|
--background-color: #0782c9;
|
|
|
|
|
background-color: #0782c9;
|
2020-11-27 11:59:32 +01:00
|
|
|
color: #ffffff;
|
|
|
|
|
--color: #ffffff;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
ion-toolbar {
|
2020-08-28 16:34:16 +01:00
|
|
|
--background: white;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.ion-text-header-top {
|
2020-09-01 11:06:23 +01:00
|
|
|
width: 100%;
|
2020-11-27 11:59:32 +01:00
|
|
|
--background: transparent;
|
2023-10-20 17:05:39 +01:00
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
color: #ffffff;
|
2020-09-01 11:06:23 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
/* border: 1px solid red; */
|
|
|
|
|
}
|
|
|
|
|
.div-top-header {
|
|
|
|
|
width: 400px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
background-color: #0782c9;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
border: 0 !important;
|
2020-12-15 19:37:42 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.div-search {
|
|
|
|
|
font-size: rem(45);
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0 0 0 10px;
|
2020-11-27 11:59:32 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.div-logo {
|
2020-11-27 11:59:32 +01:00
|
|
|
background: transparent;
|
2023-10-20 17:05:39 +01:00
|
|
|
width: 140px;
|
|
|
|
|
margin: 5px 0 0px 71px;
|
|
|
|
|
float: left;
|
2020-08-18 23:32:12 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.div-logo img {
|
|
|
|
|
width: 100%;
|
2020-08-18 23:32:12 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.div-profile {
|
|
|
|
|
font-size: rem(45);
|
|
|
|
|
float: right;
|
|
|
|
|
margin-right: 10px;
|
2020-09-01 11:06:23 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
}
|
|
|
|
|
.ion-text-header-top p {
|
|
|
|
|
--background: transparent;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.ion-text-right {
|
|
|
|
|
--background: transparent;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.header-large {
|
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size: rem(17);
|
|
|
|
|
/* font-weight: 600; */
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.header-xsmall {
|
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size: rem(13);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding-bottom: 3.5px;
|
|
|
|
|
margin-bottom: 3.5px;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
.header-medium {
|
|
|
|
|
font-size: rem(16);
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-family: roboto;
|
|
|
|
|
background: transparent;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
line-height: rem(25);
|
|
|
|
|
}
|
2021-09-01 12:17:40 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.p-small {
|
|
|
|
|
font-size: rem(17);
|
|
|
|
|
margin-top: 13px;
|
|
|
|
|
color: var(--header-tab-text-white);
|
|
|
|
|
margin-right: 25px !important;
|
|
|
|
|
text-align: right;
|
|
|
|
|
/* color: #ffffff; */
|
|
|
|
|
}
|
2021-09-01 12:17:40 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
/* CONTENT */
|
|
|
|
|
.item-list-small {
|
|
|
|
|
font-size: rem(14);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
.ion-item-class {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.label-text {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2020-11-20 10:55:51 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
//DIV
|
|
|
|
|
.div-item-Oficial {
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
/* border-bottom: 1px solid #ccc; */
|
|
|
|
|
margin: 10px 0 5px 0;
|
|
|
|
|
background: #cab0dc;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
|
|
|
|
|
}
|
|
|
|
|
.div-item-Pessoal {
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
/* border-bottom: 1px solid #ccc; */
|
|
|
|
|
margin: 10px 0 5px 0;
|
|
|
|
|
background: #cbeecb;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
|
|
|
|
|
}
|
|
|
|
|
.div-up {
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
.div-up h3 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: rem(17);
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.div-icon {
|
|
|
|
|
width: 10%;
|
|
|
|
|
font-size: rem(22);
|
|
|
|
|
float: left;
|
|
|
|
|
color: #808080;
|
|
|
|
|
}
|
|
|
|
|
.div-icon ion-icon {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.div-content-Oficial {
|
|
|
|
|
width: 85%;
|
|
|
|
|
float: left;
|
|
|
|
|
border-left: 4px solid #cab0dc;
|
|
|
|
|
padding: 0 0 0 12px;
|
|
|
|
|
}
|
|
|
|
|
.div-content-Pessoal {
|
|
|
|
|
width: 85%;
|
|
|
|
|
float: left;
|
|
|
|
|
border-left: 4px solid #cbeecb;
|
|
|
|
|
padding: 0 0 0 12px;
|
|
|
|
|
}
|
|
|
|
|
.div-content-Oficial h3,
|
|
|
|
|
.div-content-Pessoal h3 {
|
|
|
|
|
font-size: rem(19);
|
|
|
|
|
/* border: 1px solid red; */
|
|
|
|
|
}
|
|
|
|
|
.div-content-Oficial p,
|
|
|
|
|
.div-content-Pessoal p {
|
|
|
|
|
font-size: rem(16);
|
|
|
|
|
color: rgb(94, 92, 92);
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.div-botton {
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
margin: 10px 0 5px 0;
|
|
|
|
|
}
|
|
|
|
|
.div-botton-left {
|
|
|
|
|
width: 10%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
.ion-icon-location {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: block;
|
|
|
|
|
color: var(--subtitle-text-color);
|
|
|
|
|
font-size: rem(16);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
min-height: 19px;
|
|
|
|
|
}
|
|
|
|
|
.div-botton-middle {
|
|
|
|
|
width: 75%;
|
|
|
|
|
float: left;
|
|
|
|
|
margin-top: 0.5px;
|
|
|
|
|
}
|
|
|
|
|
.div-botton-middle p {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.div-botton-right {
|
|
|
|
|
width: 10%;
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.ion-icon-attach {
|
|
|
|
|
color: #666666;
|
|
|
|
|
font-size: rem(20);
|
|
|
|
|
}
|
|
|
|
|
/* NEW CSS FOR TOGGLE BUTTON */
|
|
|
|
|
.toggleBox {
|
|
|
|
|
margin: 20px 20px 0 0;
|
|
|
|
|
}
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 96px;
|
|
|
|
|
height: 34px;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
outline: none;
|
|
|
|
|
transition: 0.4s;
|
|
|
|
|
/* box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid #e16817;
|
|
|
|
|
}
|
|
|
|
|
input:checked[type="checkbox"] {
|
|
|
|
|
background: #e16817;
|
|
|
|
|
}
|
|
|
|
|
input[type="checkbox"]::before {
|
|
|
|
|
z-index: 2;
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: "";
|
|
|
|
|
left: 0;
|
|
|
|
|
width: rem(30);
|
|
|
|
|
height: 30px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
/* transform: scale(1.1); */
|
|
|
|
|
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
|
|
|
|
|
border: 1px solid #e16817;
|
|
|
|
|
}
|
|
|
|
|
input:checked[type="checkbox"]::before {
|
|
|
|
|
left: 65px;
|
|
|
|
|
}
|
|
|
|
|
.toggle {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline;
|
|
|
|
|
font-family: "Montserrat", sans-serif;
|
|
|
|
|
display: grid;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
label {
|
|
|
|
|
position: absolute;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: rem(12);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
.onbtn {
|
|
|
|
|
top: 10px;
|
|
|
|
|
bottom: 15px;
|
|
|
|
|
left: 15px;
|
|
|
|
|
/* padding-top: 10px;
|
2020-11-20 10:55:51 +01:00
|
|
|
border: 1px solid red; */
|
2023-10-20 17:05:39 +01:00
|
|
|
}
|
|
|
|
|
.ofbtn {
|
|
|
|
|
top: 10px;
|
|
|
|
|
bottom: 15px;
|
|
|
|
|
right: 14px;
|
|
|
|
|
color: #e16817;
|
|
|
|
|
}
|
2020-12-30 11:44:19 +01:00
|
|
|
|
|
|
|
|
// new
|
2023-10-20 17:05:39 +01:00
|
|
|
.main {
|
2020-12-30 11:44:19 +01:00
|
|
|
padding: 0px em(20px);
|
2023-10-20 17:05:39 +01:00
|
|
|
background: linear-gradient(
|
|
|
|
|
270deg,
|
|
|
|
|
var(--color2) 100%,
|
|
|
|
|
var(--color3) 100%,
|
|
|
|
|
var(--color4) 100%,
|
|
|
|
|
var(--color5) 100%
|
|
|
|
|
) !important;
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.event-number {
|
2021-10-22 15:37:22 +01:00
|
|
|
color: var(--header-tab-text-white);
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(15);
|
2020-12-30 11:44:19 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
bold {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(25);
|
2020-12-30 11:44:19 +01:00
|
|
|
text-align: right;
|
|
|
|
|
color: var(--white);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.time {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
|
|
|
|
text-align: center;
|
2023-11-14 12:04:31 +01:00
|
|
|
/* color: var(--header-tab-text-white); */
|
|
|
|
|
color: black;
|
2020-12-30 11:44:19 +01:00
|
|
|
line-height: unset;
|
2021-01-31 16:14:42 +01:00
|
|
|
margin-top: 10px;
|
2023-04-14 17:10:16 +01:00
|
|
|
width: 100%;
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.next-meeting {
|
2020-12-29 11:09:46 +01:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2020-12-30 11:44:19 +01:00
|
|
|
margin: 0px 20px;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
|
|
|
|
.meeting-time {
|
|
|
|
|
font-size: em(25px);
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
font-weight: 300;
|
2021-10-24 19:17:28 +01:00
|
|
|
color: var(--header-tab-text-white);
|
2020-12-30 11:44:19 +01:00
|
|
|
margin-right: 7px;
|
|
|
|
|
}
|
2021-09-01 12:17:40 +01:00
|
|
|
|
2020-12-30 11:44:19 +01:00
|
|
|
.meeting-description {
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(15);
|
2021-10-22 15:37:22 +01:00
|
|
|
color: var(--header-tab-text-white);
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conteiner-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: center;
|
2021-08-31 14:43:03 +01:00
|
|
|
padding-bottom: 20px;
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
.schedule {
|
2021-01-04 09:16:18 +01:00
|
|
|
max-width: 400px;
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2021-10-27 15:10:55 +01:00
|
|
|
//background-color: white;
|
|
|
|
|
background-color: var(--box-container-color);
|
|
|
|
|
//box-shadow: 0 0 10px 0 rgb(0 0 0 / 7%);
|
|
|
|
|
box-shadow: 0 0 10px 0 var(--box-border-color-shadow);
|
|
|
|
|
//border: solid 1px #e9e9e9;
|
|
|
|
|
border: solid 1px var(--box-border-color);
|
2020-12-30 11:44:19 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
border-radius: 25px;
|
2021-08-31 14:43:03 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
max-height: 100%;
|
2021-09-02 16:23:12 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
padding-bottom: 25px;
|
2021-08-31 14:43:03 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.schedule-header {
|
2020-12-30 11:44:19 +01:00
|
|
|
display: flex;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
justify-content: space-between;
|
2021-09-02 16:23:12 +01:00
|
|
|
padding: 20px 20px 0px 20px;
|
|
|
|
|
|
2020-12-30 11:44:19 +01:00
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2021-09-01 12:17:40 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.icon {
|
2020-12-30 11:44:19 +01:00
|
|
|
color: #e8e8e8;
|
2023-07-07 12:03:03 +01:00
|
|
|
height: rem(35);
|
|
|
|
|
width: rem(35);
|
2020-12-30 11:44:19 +01:00
|
|
|
margin-right: 10px;
|
2021-09-01 12:17:40 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.text {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(20);
|
2020-12-30 11:44:19 +01:00
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.icon-next {
|
|
|
|
|
color: #e8e8e8;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(35);
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
2023-07-06 12:18:15 +01:00
|
|
|
.icon-next-color {
|
|
|
|
|
color: #e8e8e8;
|
|
|
|
|
}
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.content {
|
2021-09-02 16:23:12 +01:00
|
|
|
//padding: 0px 20px 20px 20px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.item-exp {
|
2021-04-01 11:07:49 +01:00
|
|
|
overflow: auto;
|
2021-09-02 16:23:12 +01:00
|
|
|
//padding-top: 5px;
|
|
|
|
|
//padding-bottom: 5px;
|
|
|
|
|
padding: 5px 20px 5px 20px;
|
2021-09-01 12:17:40 +01:00
|
|
|
background-color: transparent !important;
|
2021-04-01 11:07:49 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
ion-list {
|
2020-12-30 11:44:19 +01:00
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px;
|
2021-10-27 15:10:55 +01:00
|
|
|
background-color: transparent !important;
|
2023-10-20 17:05:39 +01:00
|
|
|
.d-flex {
|
2021-01-05 09:55:24 +01:00
|
|
|
width: 100%;
|
2021-01-04 10:10:49 +01:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
ion-item {
|
2020-12-30 11:44:19 +01:00
|
|
|
padding-bottom: 5px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2021-11-23 16:46:30 +01:00
|
|
|
background-color: transparent;
|
|
|
|
|
--background: transparent;
|
2023-10-20 17:05:39 +01:00
|
|
|
.schedule-time {
|
2020-12-30 11:44:19 +01:00
|
|
|
margin-right: 10px;
|
2023-10-20 17:05:39 +01:00
|
|
|
.time-start {
|
2020-12-30 11:44:19 +01:00
|
|
|
color: #797979 !important;
|
|
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(13);
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.time-end {
|
2020-12-30 11:44:19 +01:00
|
|
|
color: #797979 !important;
|
|
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(13);
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.schedule-date {
|
2021-01-19 16:44:39 +01:00
|
|
|
margin-right: 10px;
|
2021-01-05 13:58:15 +01:00
|
|
|
color: #797979 !important;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(13);
|
2021-01-05 13:58:15 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.schedule-details {
|
2020-12-30 11:44:19 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
2021-06-24 12:31:46 +01:00
|
|
|
width: 78%;
|
2023-06-10 14:17:41 +01:00
|
|
|
min-height: 39px;
|
|
|
|
|
align-items: baseline;
|
2023-10-20 17:05:39 +01:00
|
|
|
.location {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(15);
|
2020-12-30 11:44:19 +01:00
|
|
|
color: black;
|
2023-06-10 14:17:41 +01:00
|
|
|
min-height: 19px;
|
2020-12-30 11:44:19 +01:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.description {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(13);
|
2023-06-10 12:19:46 +01:00
|
|
|
font-weight: bold;
|
2023-10-20 17:05:39 +01:00
|
|
|
max-width: 200px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2023-08-23 09:55:14 +01:00
|
|
|
|
2021-10-22 15:37:22 +01:00
|
|
|
//color: #0d89d1;
|
2023-10-20 17:05:39 +01:00
|
|
|
color: var(--title-text-color);
|
2021-06-24 12:31:46 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.description p {
|
2021-06-24 11:07:53 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
text-overflow: ellipsis !important;
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.color {
|
2020-12-30 11:44:19 +01:00
|
|
|
width: 5px;
|
2023-07-07 12:03:03 +01:00
|
|
|
height: rem(40);
|
2020-12-30 11:44:19 +01:00
|
|
|
border-top-right-radius: 5px;
|
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
|
background-color: #f05d5e;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
ion-item:last-child {
|
2021-01-05 09:55:24 +01:00
|
|
|
border-bottom: unset !important;
|
|
|
|
|
padding-bottom: unset !important;
|
2020-12-30 11:44:19 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.resume {
|
|
|
|
|
.title {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(15);
|
2020-12-30 11:44:19 +01:00
|
|
|
font-weight: 500;
|
|
|
|
|
color: #797979;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.event-num,
|
|
|
|
|
.first-event-time {
|
2020-12-30 11:44:19 +01:00
|
|
|
font-family: Roboto;
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(15);
|
2020-12-30 11:44:19 +01:00
|
|
|
display: block;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-04 10:10:49 +01:00
|
|
|
.d-flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2020-12-30 11:44:19 +01:00
|
|
|
|
2023-10-20 17:05:39 +01:00
|
|
|
.pointer {
|
2021-01-05 09:24:16 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-31 14:43:03 +01:00
|
|
|
@media only screen and (max-width: 856px) {
|
2023-10-20 17:05:39 +01:00
|
|
|
.content,
|
|
|
|
|
.conteiner-box {
|
2021-08-31 14:43:03 +01:00
|
|
|
height: unset !important;
|
|
|
|
|
max-height: unset !important;
|
2021-09-01 12:17:40 +01:00
|
|
|
}
|
2021-08-31 14:43:03 +01:00
|
|
|
|
2023-06-19 12:15:39 +01:00
|
|
|
.event-box {
|
|
|
|
|
display: block;
|
|
|
|
|
height: unset !important;
|
|
|
|
|
max-width: unset !important;
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-14 17:10:16 +01:00
|
|
|
.schedule-1 {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
.filters-box {
|
2023-06-19 12:15:39 +01:00
|
|
|
display: block !important;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.box-container {
|
|
|
|
|
max-width: 400px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.showMobile {
|
|
|
|
|
display: block !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hideMobile {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-14 17:10:16 +01:00
|
|
|
.conteiner-box-mobile {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-17 11:50:41 +01:00
|
|
|
.box-container {
|
|
|
|
|
height: unset !important;
|
|
|
|
|
}
|
2021-08-31 14:43:03 +01:00
|
|
|
}
|
|
|
|
|
|
2020-12-30 11:44:19 +01:00
|
|
|
@media only screen and (min-width: 804px) {
|
|
|
|
|
.schedule:first-child {
|
|
|
|
|
margin-right: 2%;
|
|
|
|
|
}
|
2021-01-04 09:16:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 478px) {
|
2023-10-20 17:05:39 +01:00
|
|
|
.schedule {
|
2021-01-04 09:16:18 +01:00
|
|
|
width: 400px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 478px) {
|
2023-10-20 17:05:39 +01:00
|
|
|
.schedule {
|
2021-01-04 09:16:18 +01:00
|
|
|
width: 360px;
|
|
|
|
|
}
|
2021-06-24 11:07:53 +01:00
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
ion-title {
|
2021-06-24 11:07:53 +01:00
|
|
|
border: 1px solid red;
|
|
|
|
|
text-overflow: ellipsis;
|
2021-09-01 12:17:40 +01:00
|
|
|
}
|
2023-04-14 17:10:16 +01:00
|
|
|
|
|
|
|
|
.box-container {
|
|
|
|
|
background-color: white;
|
2023-04-17 11:50:41 +01:00
|
|
|
flex-direction: column;
|
2023-04-14 17:10:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-container {
|
2023-04-17 11:50:41 +01:00
|
|
|
height: 100%;
|
2023-04-14 17:10:16 +01:00
|
|
|
padding: 20px;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
|
|
|
|
.wrap {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.event-box {
|
|
|
|
|
background-color: #ffb81c2b;
|
2023-06-10 10:00:02 +01:00
|
|
|
width: 150px;
|
|
|
|
|
height: 90px;
|
2023-10-20 17:05:39 +01:00
|
|
|
margin: 5px;
|
2023-07-06 12:18:15 +01:00
|
|
|
margin-left: 0px;
|
|
|
|
|
margin-right: 0px;
|
2023-04-14 17:10:16 +01:00
|
|
|
flex-direction: column;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
-webkit-border-radius: 10px;
|
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
|
-ms-border-radius: 10px;
|
|
|
|
|
-o-border-radius: 10px;
|
|
|
|
|
padding: 10px;
|
2023-10-20 17:05:39 +01:00
|
|
|
p {
|
2023-07-26 15:37:05 +01:00
|
|
|
margin-bottom: 0px;
|
2023-04-14 17:10:16 +01:00
|
|
|
line-height: 15px;
|
|
|
|
|
}
|
|
|
|
|
span {
|
2023-07-07 12:03:03 +01:00
|
|
|
font-size: rem(15);
|
2023-04-14 17:10:16 +01:00
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex-wrap {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-content {
|
2023-04-17 11:50:41 +01:00
|
|
|
// flex-direction: column;
|
|
|
|
|
width: 100%;
|
2023-04-14 17:10:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.schedule-container {
|
2023-04-17 11:50:41 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
|
overflow: auto;
|
2023-04-14 17:10:16 +01:00
|
|
|
.schedule {
|
|
|
|
|
box-shadow: unset !important;
|
|
|
|
|
border: unset !important;
|
|
|
|
|
width: unset !important;
|
|
|
|
|
max-width: unset !important;
|
|
|
|
|
}
|
2023-10-20 17:05:39 +01:00
|
|
|
ion-item {
|
2023-04-24 11:30:21 +01:00
|
|
|
border-bottom: unset !important;
|
|
|
|
|
}
|
2023-04-14 17:10:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conteiner-box-mobile {
|
|
|
|
|
display: none;
|
2023-05-29 11:51:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
|
.box-container {
|
|
|
|
|
width: 360px;
|
|
|
|
|
margin: 0px auto;
|
|
|
|
|
margin-left: 0px !important;
|
|
|
|
|
margin-right: 0px !important;
|
|
|
|
|
}
|
2023-06-10 12:19:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-exp {
|
|
|
|
|
justify-content: flex-start !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.event-box-content {
|
|
|
|
|
justify-content: flex-start !important;
|
|
|
|
|
}
|
2023-07-06 12:18:15 +01:00
|
|
|
|
|
|
|
|
@media only screen and (min-width: 100px) {
|
2023-10-20 17:05:39 +01:00
|
|
|
.container-filters,
|
|
|
|
|
.filters-box,
|
|
|
|
|
.schedule-header,
|
|
|
|
|
.Goto-agenda {
|
2023-07-06 12:18:15 +01:00
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 500px) {
|
2023-10-20 17:05:39 +01:00
|
|
|
.container-filters,
|
|
|
|
|
.filters-box,
|
|
|
|
|
.schedule-header,
|
|
|
|
|
.Goto-agenda {
|
2023-07-06 12:18:15 +01:00
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|