-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_guidlines.txt
79 lines (60 loc) · 3.37 KB
/
style_guidlines.txt
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
/* ======================================================================================================================================================================================================================================== */
/* Style Guide for RECEIPTIFY - */
/* Overall Look and Feel */
/* Minimalist and flat design. No 3D buttons or metal looks. Calm and gentle user experience. */
/* ======================================================================================================================================================================================================================================== */
/* Colour Scheme */
:root {
--primary-color: #6096B4;
--secondary-color: #93BFCF;
--tertiary-color: #BDCDD6;
--text-color: #6096B4;
--background-color: #EEE9DA;
--accent-color: #F69E7B;
--hover-accent: #D2E9E93;
--hover-accent-text: #54259;
}
/* ======================================================================================================================================================================================================================================== */
/* Typography */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");
body {
font-family: "Raleway", sans-serif;
}
h1, h2, h3, h4 {
font-family: "Montserrat", sans-serif;
}
code {
font-family: "JetBrains Mono", monospace;
}
/* ======================================================================================================================================================================================================================================== */
/* Iconography */
/* Icons should be flat in design, adhering to the overall style. Use appropriate icons for context. */
/* ======================================================================================================================================================================================================================================== */
/* Links */
a {
text-decoration: none;
color: var(--primary-color);
}
a:hover {
color: var(--accent-color);
}
/* ======================================================================================================================================================================================================================================== */
/* Buttons */
button {
background-color: var(--primary-color);
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-family: "Raleway", sans-serif;
transition: background-color 0.3s ease;
}
button:hover {
background-color: var(--accent-color);
}
/* ======================================================================================================================================================================================================================================== */
/* Additional Styles */
/* Add specific styles for different sections of the website here, ensuring they align with the new color scheme and typography. */
/* ======================================================================================================================================================================================================================================== */