Skip to content

Commit 7d53db3

Browse files
Vineeth T RVineeth T R
authored andcommitted
Google Analytics Added
1 parent 3fdab97 commit 7d53db3

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed

css/workshop.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,3 +1292,36 @@ body section:nth-child(2n + 1) {
12921292
background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px;
12931293
}
12941294
}
1295+
1296+
.md-0 .loader {
1297+
position: relative;
1298+
width: 64px;
1299+
height: 64px;
1300+
border-radius: 50%;
1301+
border: 5px dashed #fff;
1302+
animation: 3s rotate linear infinite;
1303+
}
1304+
1305+
@keyframes spikeUp {
1306+
0% {
1307+
background-size: 5px 40px;
1308+
}
1309+
16% {
1310+
background-size: 5px 55px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px;
1311+
}
1312+
33% {
1313+
background-size: 5px 40px, 5px 55px, 5px 40px, 5px 40px, 5px 40px, 5px 40px;
1314+
}
1315+
50% {
1316+
background-size: 5px 40px, 5px 40px, 5px 55px, 5px 40px, 5px 40px, 5px 40px;
1317+
}
1318+
66% {
1319+
background-size: 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px, 5px 40px;
1320+
}
1321+
83% {
1322+
background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px;
1323+
}
1324+
100% {
1325+
background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px;
1326+
}
1327+
}

index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@
3838
<meta name="twitter:image:src" content="https://css3loaders.github.io/images/Loader-screen.png">
3939

4040
<link rel="stylesheet" href="css/styles.css">
41+
<!-- Global site tag (gtag.js) - Google Analytics -->
42+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-68W4ZFLS7E"></script>
43+
<script>
44+
window.dataLayer = window.dataLayer || [];
45+
function gtag(){dataLayer.push(arguments);}
46+
gtag('js', new Date());
47+
48+
gtag('config', 'G-68W4ZFLS7E');
49+
</script>
4150
</head>
4251
<body>
4352
<header>

scss/workshop.scss

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,4 +1284,29 @@ body {
12841284
83% { background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px}
12851285
100% { background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px}
12861286
}
1287-
}
1287+
}
1288+
1289+
1290+
// 27
1291+
.md-0 {
1292+
.loader {
1293+
position: relative;
1294+
width: 64px;
1295+
height: 64px;
1296+
border-radius:50%;
1297+
border: 5px dashed #fff;
1298+
animation: 3s rotate linear infinite;
1299+
}
1300+
1301+
1302+
@keyframes spikeUp {
1303+
0% { background-size: 5px 40px}
1304+
16% { background-size: 5px 55px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px}
1305+
33% { background-size: 5px 40px, 5px 55px, 5px 40px, 5px 40px, 5px 40px, 5px 40px}
1306+
50% { background-size: 5px 40px, 5px 40px, 5px 55px, 5px 40px, 5px 40px, 5px 40px}
1307+
66% { background-size: 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px, 5px 40px}
1308+
83% { background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px}
1309+
100% { background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px}
1310+
}
1311+
}
1312+

0 commit comments

Comments
 (0)