100 lines
2.3 KiB
SCSS
100 lines
2.3 KiB
SCSS
/*
|
|
Authors : initappz (Rahul Jograna)
|
|
Website : https://initappz.com/
|
|
App Name : E-Learning App Template
|
|
This App Template Source code is licensed as per the
|
|
terms found in the Website https://initappz.com/license
|
|
Copyright and Good Faith Purchasers © 2021-present initappz.
|
|
*/
|
|
/*
|
|
* 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";
|
|
|
|
@font-face {
|
|
font-family: 'regular';
|
|
src: url(assets/fonts/OpenSans-Regular.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'medium';
|
|
src: url(assets/fonts/OpenSans-Medium.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'semi-bold';
|
|
src: url(assets/fonts/OpenSans-SemiBold.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'bold';
|
|
src: url(assets/fonts/OpenSans-Bold.ttf);
|
|
}
|
|
|
|
* {
|
|
font-family: 'regular';
|
|
}
|
|
|
|
ion-label {
|
|
display: block;
|
|
}
|
|
|
|
.bg_image {
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
ion-title {
|
|
font-weight: normal;
|
|
font-family: 'medium';
|
|
font-size: 18px;
|
|
}
|
|
|
|
ion-button {
|
|
margin: 0px;
|
|
}
|
|
|
|
ion-modal.custom_modal_bottom {
|
|
.modal-wrapper {
|
|
width: 100% !important;
|
|
border-top-left-radius: 25px;
|
|
border-top-right-radius: 25px;
|
|
}
|
|
|
|
&.bottom {
|
|
align-items: flex-end !important;
|
|
}
|
|
|
|
--height: 300px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.boxed_contents{
|
|
//background-color: red;
|
|
max-width: 550px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
} |