-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.blade.php
65 lines (60 loc) · 2.18 KB
/
welcome.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="csrf-token" content="{{ csrf_token() }}">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.bundle.js"></script>
<link href='https://fonts.googleapis.com/css?family=Montserrat+Sans:300,400,600,700|Material+Icons' rel="stylesheet">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<!-- Styles -->
<style>
html, body, section {
font-family: 'Montserrat', sans-serif;
}
a:link{
text-decoration: none;
}
/* for mobile view in genea ID */
.phonesize{
font-size: 7px;
}
/* For V-Cloak */
[v-cloak] > * { display: none; }
[v-cloak]::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
margin-top: 250px;
border: 16px solid #4DB6AC;
border-radius: 50%;
border-top: 16px solid #f0e10e;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<title>Philippine Tech Community</title>
</head>
<body >
<div id="app" v-cloak class="hide-overflow" style="position: relative;">
<App></App>
</div>
<script src="{{ url (mix('/js/app.js')) }}" type="text/javascript"></script>
</body>
</html>