summaryrefslogtreecommitdiffstats
path: root/public/src/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/src/styles.css')
-rw-r--r--public/src/styles.css76
1 files changed, 76 insertions, 0 deletions
diff --git a/public/src/styles.css b/public/src/styles.css
new file mode 100644
index 0000000..4b1d433
--- /dev/null
+++ b/public/src/styles.css
@@ -0,0 +1,76 @@
+/* You can add global styles to this file, and also import other style files */
+@import '@angular/material/prebuilt-themes/indigo-pink.css';
+
+@font-face {
+ font-family: 'Open Sans';
+ src: url('./assets/fonts/OpenSans-SemiBold.ttf') format('ttf');
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ /* font-family: 'Open Sans', sans-serif;
+ font-size: 13px; */
+}
+
+html,
+body,
+app-root,
+app-home {
+ height: 100%;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 13px;
+ /* height: 100vh; */
+}
+
+div,
+span {
+ font-weight: 400;
+}
+
+div .field-label,
+span .field-label,
+div .field-label > span {
+ font-weight: 600;
+}
+
+/* form input validation border */
+textarea.ng-touched.ng-invalid:not(form),input.ng-touched.ng-invalid:not(form) {
+ border: 1px solid #cf2a2a !important;
+}
+
+/** reset button **/
+.mat-fab.mat-primary,
+.mat-mini-fab.mat-primary,
+.mat-raised-button.mat-primary {
+ background-color: #009fdb;
+}
+
+.mat-fab,
+.mat-mini-fab,
+.mat-raised-button {
+ box-shadow: none !important;
+}
+
+.btn-secondry {
+ border: 1px solid #009fdb !important;
+ color: #009fdb !important;
+ background: #ffffff !important;
+ box-shadow: none !important;
+}
+
+/* Astrix required */
+.required::before {
+ content: '*';
+ color: red;
+ margin-right: 3px;
+}
+
+/** overide dialog **/
+.ui-dialog {
+ border-top: solid 6px #cf2a2a;
+}
+.ui-dialog-titlebar {
+ background: white;
+}