This file contains hidden or 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
<html> | |
<head> | |
<title>Theme Switcher</title> | |
<meta charset="UTF-8" /> | |
<link href="src/style.css" /> | |
</head> | |
<body> | |
<header> | |
<button id="theme">Change theme</button> | |
<fieldset> |
This file contains hidden or 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
{ | |
"indent": "2", | |
"prettierOptions": { | |
"semi": 0 | |
}, | |
"readmeFile": "Readme.md", | |
"licenseFile": "License.md", | |
"name": "SaraVieira", | |
"github": "SaraVieira", | |
"url": "https://iamsaravieira.com", |
This file contains hidden or 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
CSS | |
Javascript | |
NodeJS | |
Performance | |
Inspirational | |
React | |
Story | |
UX | |
Design |
This file contains hidden or 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
import flex from "../../styles/flex-mixin"; | |
import { red, blue, yellow } from "../../styles/variables.css"; |
This file contains hidden or 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
module.exports = flex = ([align = "flex-start", justify = "flex-start"]) => ({ | |
display: "flex", | |
"align-items": align, | |
"justify-content": justify | |
}) |
This file contains hidden or 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
docker run --rm -d -p 80:80 rick-morty-random-episode:latest |
This file contains hidden or 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
docker build --rm -f Dockerfile -t rick-morty-random-episode:latest . |