-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (87 loc) · 3.6 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Colder</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<script type="text/javascript" src="./js/main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="./image/colder.ico"/>
</head>
<body>
<header>
<div class="menu-container container">
<ul>
<li><a href="#" class="first_section">What's Colder</a></li>
<li><a href="#" class="second_section">Source</a></li>
<li><a href="#" class="third_section">Documentation</a></li>
</ul>
<a href="./file/colder_v1.0.zip" class="download" download>Download Now</a>
</div>
<div class="header-container container">
<div class="imgc"></div>
<h1>Colder</h1>
<p class="subt">Find every pixel's color value in your Computer</p>
</div>
</header>
<a href="./file/colder_v1.0.zip" class="download" download><i class="fas fa-arrow-alt-circle-down"></i></a>
<section id="info">
<div class="container-info container">
<h2>What can you do?</h2>
<div class="find all-info">
<i class="fas fa-palette"></i>
<h3>Color Value</h3>
<p>Move the mouse in the pixel you want and its color value will be immediately showed up.</p>
</div>
<div class="hash all-info">
<i class="fas fa-hashtag"></i>
<h3>Copy Hex</h3>
<p>You can copy every pixel's hex color value you want and use afterwards everywhere you want.</p>
</div>
<div class="save all-info">
<i class="fas fa-file"></i>
<h3>Export File</h3>
<p>You can save in a txt file every important color value in rgb and hex format and name it,
so you will never forget the object of which the color value comes from.</p>
</div>
</div>
</section>
<hr>
<section id="source">
<div class="container container-source">
<h2>Source Code</h2>
<i class="fab fa-github"></i>
<p>  The above its an open source project. All the code can be found in <a href="https://github.com/PanSem/colder">Github</a>. If you think that you have any good ideas about additional
functionality for the program, feel free to clone the code and make any changes you like.
If your not a programmer but you have a good idea about the program sent an email with your ideas.
You can find the source code <a href="https://github.com/PanSem/colder">here</a>.</p>
</div>
</section>
<hr>
<section id="documentation">
<div class="container container-documentation">
<h2>Documentation</h2>
<div class="doc windows">
<i class="fab fa-windows"></i>
<h3>Windows</h3>
<p>Colder can run in Windows 7/8/8.1/10.</p>
</div>
<div class="doc docum">
<i class="fas fa-book"></i>
<h3>Docs</h3>
<p>Full documentation of the program can be found <a href="https://github.com/PanSem/colder#usage">here</a>.
If something is unclear feel free to send me an email.</p>
</div>
</div>
</section>
<footer>
<div class="container container-fo">
<p>© 2018 Pan Sem.</p>
<p><i class="fas fa-envelope"></i> email: [email protected]</p>
</div>
</footer>
</body>
</html>