summaryrefslogtreecommitdiffstats
path: root/public/src/styles.css
blob: 4b1d4331be5e5a7eb5b85b2fd4d2dfc47aa05f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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;
}