-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
15 changed files
with
885 additions
and
214 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,43 @@ | ||
const { colors } = require('tailwindcss/defaultTheme') | ||
|
||
module.exports = { | ||
purge: { | ||
enabled: true, | ||
content: ['./views/**/*.ejs'], | ||
content: ["./views/**/*.ejs"], | ||
}, | ||
theme: { | ||
extend: { | ||
colors: { | ||
primary: '#FF6363', | ||
blue: { | ||
...colors.blue, | ||
900: "#1955e4", | ||
}, | ||
primary: "#FF6363", | ||
secondary: { | ||
100: '#E2E2D5', | ||
200: '#888883', | ||
100: "#E2E2D5", | ||
200: "#888883", | ||
}, | ||
// colors according to design 400->blue 200->red 500->green | ||
tempc: { | ||
100: '#365088', | ||
200: '#E93434', | ||
300: '#AAB8D0', | ||
400: '#266FEA', | ||
500: '#41D7AA', | ||
600: '#236AE1', | ||
700: '#879CC0', | ||
800: '#CADAEC', | ||
900: '#3DB197', | ||
1000: '#D9FFF7', | ||
1100: '#E5EDFB', | ||
1200: '#F8FAFF', | ||
|
||
100: "#365088", | ||
200: "#E93434", | ||
300: "#AAB8D0", | ||
400: "#266FEA", | ||
500: "#41D7AA", | ||
600: "#236AE1", | ||
700: "#879CC0", | ||
800: "#CADAEC", | ||
900: "#3DB197", | ||
1000: "#D9FFF7", | ||
1100: "#E5EDFB", | ||
1200: "#F8FAFF", | ||
}, | ||
|
||
}, | ||
fontFamily: { | ||
body: ['Nunito'] | ||
} | ||
body: ["Nunito"], | ||
}, | ||
}, | ||
}, | ||
variants: {}, | ||
plugins: [], | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" | ||
integrity="sha256-46r060N2LrChLLb5zowXQ72/iKKNiw/lAmygmHExk/o=" crossorigin="anonymous" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" | ||
integrity="sha256-46r060N2LrChLLb5zowXQ72/iKKNiw/lAmygmHExk/o=" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<link rel="stylesheet" href="../css/style.css" /> | ||
<script | ||
src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" | ||
defer | ||
></script> | ||
|
||
<title>TradeByte</title> | ||
</head> | ||
</head> | ||
|
||
<body class="flex justify-center items-center bg-gray-900 w-full"> | ||
<body class="flex justify-center items-center w-screen"> | ||
<%- body %> | ||
|
||
<script src="javascript/script.js"></script> | ||
</body> | ||
|
||
</html> | ||
</body> | ||
</html> |
Oops, something went wrong.