Skip to content

Commit c436234

Browse files
first commit
1 parent 496a679 commit c436234

File tree

6 files changed

+31
-42
lines changed

6 files changed

+31
-42
lines changed

dist/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
<head>
44
<meta charset="UTF-8">
55
<title>Title</title>
6+
67
<link rel="stylesheet" href="shapecss.css">
78
</head>
89
<body>
910
<div class="container">
10-
<p>Hello world</p>
11+
<p>testing</p>
1112
</div>
1213

1314
<script src="shapecss.js"></script>

dist/shapecss.css

+2-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/shapecss.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+21-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sass/main.scss

+3-20
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
@import url('https://fonts.googleapis.com/css?family=PT+Serif&display=swap');
88
// component import
99

10-
body{
10+
html, body{
1111
font-family: "PT Serif";
1212
}
1313

14+
15+
1416
@import "assets/compass";
1517
@import "assets/juice";
1618
@import 'variables';
@@ -48,23 +50,4 @@ body{
4850
@import 'buttonCircle';
4951
@import "toggle-switch";
5052
@import "utility";
51-
52-
//.presentation{
53-
// height:auto;
54-
// padding:20px;
55-
// margin:auto;
56-
// text-align: center;
57-
// h1{
58-
// font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
59-
// font-size: 50px;
60-
// padding: 8px 0px;
61-
// text-align: center;
62-
// text-transform: uppercase;
63-
// color: #202020;
64-
// letter-spacing: .1em;
65-
// text-shadow: -1px -1px 1px #111111, 2px 2px 1px #363636;
66-
// }
67-
//
68-
//}
69-
7053

src/sass/tags.scss

-5
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,13 @@
55
html, body{
66
width: 100%;
77
height: 100%;
8-
text-rendering: optimizeLegibility;
98
text-rendering: geometricPrecision;
109
font-smooth: always;
1110
font-smoothing: antialiased;
1211
-moz-font-smoothing: antialiased;
1312
-webkit-font-smoothing: antialiased;
14-
1513
}
1614

17-
body{
18-
font-family: 'shapecss';
19-
}
2015

2116
strong{
2217
font-weight:700;

0 commit comments

Comments
 (0)