Files
doneit-web/src/global.scss
T

150 lines
3.4 KiB
SCSS
Raw Normal View History

2020-08-05 15:39:16 +01:00
/*
* App Global CSS
* ----------------------------------------------------------------------------
* Put style rules here that you want to apply globally. These styles are for
* the entire app and not just one component. Additionally, this file can be
* used as an entry point to import other CSS/Sass files to be included in the
* output CSS.
* For more information on global stylesheets, visit the documentation:
* https://ionicframework.com/docs/layout/global-stylesheets
*/
/* Core CSS required for Ionic components to work properly */
@import "~@ionic/angular/css/core.css";
/* Basic CSS for apps built with Ionic */
@import "~@ionic/angular/css/normalize.css";
@import "~@ionic/angular/css/structure.css";
@import "~@ionic/angular/css/typography.css";
@import '~@ionic/angular/css/display.css';
/* Optional CSS utils that can be commented out */
@import "~@ionic/angular/css/padding.css";
@import "~@ionic/angular/css/float-elements.css";
@import "~@ionic/angular/css/text-alignment.css";
@import "~@ionic/angular/css/text-transformation.css";
@import "~@ionic/angular/css/flex-utils.css";
2021-01-21 15:45:58 +01:00
2021-01-26 10:53:12 +01:00
// calendar
2021-01-28 16:18:10 +01:00
// ionic calendar2
2021-01-21 15:45:58 +01:00
td.monthview-current{
color: white;
/* border-radius: 89px; */
2021-01-25 16:18:36 +01:00
background: lightskyblue !important;
2021-01-21 15:45:58 +01:00
justify-content: center;
align-items: center;
/* display: flex; */
height: 100%;
div {
border-radius: 28px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding-left: 9px;
color: white;
}
}
2021-01-22 16:00:37 +01:00
.monthview-secondary-with-event, .monthview-secondary-with-event[_ngcontent-dwf-c153] {
background-color: white !important;
}
td.monthview-selected {
background-color: #42b9fe30 !important;
color: black !important;
}
2021-01-28 16:18:10 +01:00
.event-detail-container{
display: none;
}
.cal-week-view {
border-top: none !important;
}
2021-01-21 15:45:58 +01:00
2021-01-25 16:18:36 +01:00
/* Timeline */
.cal-hour-segment {
border-bottom: none !important;
}
.cal-current-time-marker {
background-color: #42b9fe !important;
}
.timeline .cal-event, .cal-event{
2021-01-26 10:53:12 +01:00
padding: 0px !important;
}
.cal-current-time-marker {
width: 100% !important;
margin-left: 0px !important;
}
.cal-current-time-marker::before{
width: 10px;
height: 10px;
background-color: #42b9fe !important;
content: ".";
color: transparent;
left: 55px;
position: absolute;
border-radius: 91px;
2021-01-27 13:57:55 +01:00
top: -3.5px;
2021-01-26 10:53:12 +01:00
}
.cal-time{
font-family: Roboto;
font-size: 13px;
color: #797979;
}
.timeline-box{
2021-01-27 13:57:55 +01:00
padding: 3px;
background-color: white !important;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07) !important;
border: solid 1px #e9e9e9 !important;
2021-01-26 10:53:12 +01:00
color: black;
.timeline-start-time, .timeline-location{
font-family: Roboto;
font-size: 13px;
margin-right: 10px;
}
.timeline-event-discription{
font-family: Roboto;
font-size: 15px;
font-weight: bold;
}
}
.timeline-box-Pessoal{
2021-01-25 16:18:36 +01:00
border-left: 5px solid #ffb703 !important;
2021-01-26 10:53:12 +01:00
height: 100%;
2021-01-25 16:18:36 +01:00
}
2021-01-26 10:53:12 +01:00
.timeline-box-Oficial{
border-left: 5px solid #f05d5e !important;
height: 100%;
}
2021-01-27 13:57:55 +01:00
.table-bordered, .table-bordered{
border: none !important;
td, th {
border: none !important;
}
}
.cal-tooltip, .cal-tooltip-top{
display: none;
}
2021-01-26 10:53:12 +01:00
.timeline-box-{}
2021-01-22 16:00:37 +01:00
/* angular-cli file: src/styles.css */
2021-01-27 13:57:55 +01:00
@import "../node_modules/angular-calendar/css/angular-calendar.css";
2021-01-28 16:18:10 +01:00
@import "./style/main.scss";