This repository was archived by the owner on Jan 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (104 loc) · 4.31 KB
/
index.html
File metadata and controls
115 lines (104 loc) · 4.31 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<title>SkQuery documentation</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- FontAwesome JS -->
<script defer src="https://use.fontawesome.com/releases/v5.7.2/js/all.js" integrity="sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP" crossorigin="anonymous"></script>
<!-- Global CSS -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="assets/plugins/elegant_font/css/style.css">
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/styles.css">
</head>
<body class="landing-page">
<!-- GITHUB BUTTON JS -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<div class="page-wrapper">
<header class="header text-center">
<!-- Logo -->
<div class="branding">
<h1 class="logo">
<span aria-hidden="true" class="icon_documents_alt icon"></span>
<span class="text-highlight">SkQuery </span><span class="text-bold">Docs</span>
</h1>
</div>
<!-- Search -->
<div class="main-search-box pt-3 pb-4 d-inline-block">
<form class="form-inline search-form justify-content-center" action="" method="get">
<input type="text" placeholder="Search syntaxes... (Coming soon)" name="search" class="form-control search-input">
<button type="submit" class="btn search-button" value="Search"><i class="fas fa-search"></i></button>
</form>
</div>
<!-- Github Buttons -->
<div class="social-container">
<div class="github-btn mb-2">
<a class="github-button" href="https://github.com/SkQuery/SkQuery" data-size="large">SkQuery on Github</a>
</div>
</div>
</header>
<section class="cards-section text-center">
<div class="container">
<h2 class="title">Check out syntax below!</h2>
<!-- Intro -->
<div class="intro">
<p>Click one of the following cards below to view syntaxes of that category.</p>
<a class="btn btn-primary btn-cta" href="https://forums.skunity.com/resources/skquery.68" target="_blank"><i class="fas fa-cloud-download-alt"></i> Download Now</a>
</div>
<!-- Cards -->
<div id="cards-wrapper" class="cards-wrapper row">
<div class="item item-green col-lg-4 col-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon icon_cog"></span>
</div>
<h3 class="title">Events</h3>
<a class="link" href="events.html"><span></span></a>
</div>
</div>
<div class="item item-orange col-lg-4 col-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon icon_cone"></span>
</div>
<h3 class="title">Conditions</h3>
<a class="link" href="conditions.html"><span></span></a>
</div>
</div>
<div class="item item-pink col-lg-4 col-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon icon_genius"></span>
</div>
<h3 class="title">Expressions</h3>
<a class="link" href="expressions.html"><span></span></a>
</div>
</div>
<div class="item item-blue col-lg-4 col-6">
<div class="item-inner">
<div class="icon-holder">
<span aria-hidden="true" class="icon icon_lightbulb_alt"></span>
</div>
<h3 class="title">Effects</h3>
<a class="link" href="effects.html"><span></span></a>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Main Javascript -->
<script type="text/javascript" src="assets/plugins/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/plugins/stickyfill/dist/stickyfill.min.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>