forked from ahmdigital/evergreen-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
137 lines (118 loc) · 2.89 KB
/
global.css
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#__next {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: var(--colour-lightGrey);
}
body {
margin: 0;
font-size: var(--font-size-normal);
font-family: var(--primary-font-family);
}
.h2NoMargins {
margin-top: 0;
margin-bottom: 0;
color: var(--colour-font);
}
h2 {
margin-top: 0;
margin-bottom: 0;
font-size: var(--font-size-xlarge);
font-weight: var(--font-weight-semibolder);
}
h1 {
font-size: 2rem;
/* 32px; */
font-weight: var(--font-weight-semibolder);
}
.noMargins {
margin-top: 0;
margin-bottom: 0;
color: var(--colour-font);
}
h3 {
margin-top: 0;
margin-bottom: 0;
font-size: var(--font-size-large);
font-weight: var(--font-weight-semibolder);
}
p {
margin-top: 0;
margin-bottom: 0;
}
a:link {
color: var(--colour-font);
/* text-decoration: none; */
}
a:visited {
color: var(--colour-font);
/* text-decoration: none; */
}
a:hover {
color: var(--colour-font);
/* text-decoration: none; */
}
a:active {
color: var(--colour-green);
/* text-decoration: none; */
}
:root {
font-size: 16px;
/*Customise light status colours by modifying '--rank-[color]:' property */
--rank-green: rgba(31, 162, 25, 1);
--rank-orange: rgb(235, 158, 17);
--rank-red: rgb(230, 62, 24);
/* Colours for Sign-in page login & success icons */
--login-success: rgba(31, 162, 25, 1);
--login-failed: rgb(230, 62, 24);
--rank-light-green: #cfc;
--rank-green-border: 1px solid green;
--rank-light-orange: #ffc;
--rank-orange-border: 1px solid orange;
--rank-light-red: #fcc;
--rank-red-border: 1px solid red;
--colour-font: #000;
--colour-inv-font: white;
--colour-background: #f2f0ee;
--colour-container-background: #fff;
--colour-white: #fff;
--colour-black: #000;
--colour-lightGrey: rgb(242, 240, 238);
--colour-blue: rgb(30, 101, 255);
--colour-table-selected: #98c6db;
--colour-green: rgba(31, 162, 25, 1);
/* previously 0.8 for alpha ^ */
--colour-yellow: rgb(235, 158, 17);
--colour-red: rgba(198, 55, 24, 1);
--colour-grey-border: "#CECECE";
--colour-black-hover: rgba(66, 66, 66, 255);
--border-thick: 0.625rem solid var(--colour-black);
--border-thick-halved: 0.32rem solid var(--colour-black);
--table-left-edge: #f6f6f6;
--table-cell-border: var(--colour-black);
--table-cell-background: var(--colour-container-background);
--main-section-boxshadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
/*0px 4px 4px*/
--main-section-border-radius: 1.25rem;
/*20 px*/
--primary-font-family: "Work Sans", sans-serif;
--secondary-font-family: "Inter", sans-serif;
--font-weight-bold: 700;
--font-weight-semibolder: 600;
--font-weight-semibold: 500;
--font-weight-normal: 400;
--font-size-large: 1.25rem;
/*20px*/
--font-size-normal: 1rem;
/*16px*/
--font-size-xlarge: 1.5rem;
/* 24px */
--font-size-small: 0.75rem;
/*12px*/
--label-border-radius: 10px
}
@media only screen and (min-width: 1920px) {
h1.noMargins {
font-size: 2.5rem;
}
}