Skip to content

Commit 53eddef

Browse files
committed
first commit
0 parents  commit 53eddef

File tree

13 files changed

+1693
-0
lines changed

13 files changed

+1693
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

assets/css/style.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/* Error: 0.2rem and 0 are incompatible.
2+
* ,
3+
* 9 | $return: append($return, max($value, 0));
4+
* | ^^^^^^ 0.2rem
5+
* | = 0
6+
* '
7+
* node_modules\bootstrap\scss\mixins\_border-radius.scss 9:36 valid-radius()
8+
* node_modules\bootstrap\scss\mixins\_border-radius.scss 20:20 border-radius()
9+
* node_modules\bootstrap\scss\_reboot.scss 322:3 @import
10+
* node_modules\bootstrap\scss\bootstrap.scss 17:9 @import
11+
* scss\_custom.scss 2:9 @use
12+
* scss\style.scss 1:1 root stylesheet */
13+
14+
body::before {
15+
font-family: "Source Code Pro", "SF Mono", Monaco, Inconsolata, "Fira Mono",
16+
"Droid Sans Mono", monospace, monospace;
17+
white-space: pre;
18+
display: block;
19+
padding: 1em;
20+
margin-bottom: 1em;
21+
border-bottom: 2px solid black;
22+
content: "Error: 0.2rem and 0 are incompatible.\a \2577 \a 9 \2502 $return: append($return, max($value, 0));\a \2502 ^^^^^^ 0.2rem\a \2502 \2501 0\a \2575 \a node_modules\\bootstrap\\scss\\mixins\\_border-radius.scss 9:36 valid-radius()\a node_modules\\bootstrap\\scss\\mixins\\_border-radius.scss 20:20 border-radius()\a node_modules\\bootstrap\\scss\\_reboot.scss 322:3 @import\a node_modules\\bootstrap\\scss\\bootstrap.scss 17:9 @import\a scss\\_custom.scss 2:9 @use\a scss\\style.scss 1:1 root stylesheet";
23+
}

assets/css/style.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!doctype html>
2+
<html lang="es">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
<!-- Bootstrap CSS -->
9+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
10+
11+
<title>Grecia Castedo cv</title>
12+
<link rel="stylesheet" href="assets/css/style.css">
13+
</head>
14+
<body>
15+
<h1>Hello, world!</h1>
16+
17+
<!-- Bootstrap Bundle with Popper -->
18+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
19+
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)