commit 99b686fddb54fcd7b420daaae604d251572c634b
parent 6e823bc0be0d16fb532854506dc94daeae32db33
Author: tongong <tongong@gmx.net>
Date: Fri, 19 Jun 2020 16:46:46 +0200
removed google font tracking
Diffstat:
3 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/fonts/montserrat-v14-latin-700.woff b/fonts/montserrat-v14-latin-700.woff
Binary files differ.
diff --git a/fonts/montserrat-v14-latin-700.woff2 b/fonts/montserrat-v14-latin-700.woff2
Binary files differ.
diff --git a/styles.css b/styles.css
@@ -1,10 +1,17 @@
-@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
+@font-face {
+ font-family: "Montserrat";
+ font-style: normal;
+ font-weight: 700;
+ src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/montserrat-v14-latin-700.woff2") format("woff2"),
+ /* Chrome 26+, Opera 23+, Firefox 39+ */ url("../fonts/montserrat-v14-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
+}
+
@keyframes rotate {
from {
- transform: rotate(0)
+ transform: rotate(0);
}
to {
- transform: rotate(360deg)
+ transform: rotate(360deg);
}
}
@@ -69,7 +76,7 @@ body {
p {
color: white;
- font-family: 'Montserrat', sans-serif;
+ font-family: "Montserrat", sans-serif;
}
a {
@@ -86,11 +93,11 @@ a:before {
bottom: 0;
width: 100%;
height: 2px;
- background: #FFFFFF;
+ background: #ffffff;
transform: translateX(-100%);
position: absolute;
- transition: transform .5s ease;
- content: '';
+ transition: transform 0.5s ease;
+ content: "";
}
a:hover:before {
@@ -122,4 +129,4 @@ a:hover:before {
border-radius: 50%;
background: white;
border: none;
-}
-\ No newline at end of file
+}