-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (112 loc) · 4.25 KB
/
index.html
File metadata and controls
113 lines (112 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to WBTek</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1e1e1e; /* Dark background as a fallback */
background-image: url('WhiteBearCrabBkg.jpg');
background-repeat: no-repeat; /* Prevents tiling */
background-position: center top; /* Centers the image horizontally */
background-size: auto; /* Keeps the original size of the image */
color: #dcdcdc; /* Light text color */
text-align: center;
padding: 50px;
}
h1 {
font-size: 3em;
color: #e4741f; /* Highlight color for main heading */
margin-bottom: 1px;
}
h2 {
font-size: 1.3em;
color: #bbb; /* Bright gray for the subtitle */
margin-top: 0px;
margin-bottom: 30px;
}
h3 {
font-size: 0.9em;
color: #bbb; /* Bright gray for the subtitle */
margin-top: 7px;
margin-bottom: 17px;
}
p {
font-size: 1.2em;
margin: 20px 0;
}
u {
font-size: 1.7em;
margin: 20px 0;
}
.label {
font-size: 1.0em;
margin: 20px 0;
/* margin-right: 20px; */
}
a {
font-size: 0.9em;
text-decoration: none;
color: #4fa4ff; /* Light blue for links */
padding: 0 10px;
border: 1px solid #4fa4ff; /* Adds a subtle box around links */
border-radius: 4px;
transition: 0.3s;
}
a:hover {
background-color: #4fa4ff;
color: #1e1e1e; /* Flips the color on hover */
}
</style>
</head>
<body>
<h1 style="opacity: 0.77;">Welcome to WBTek</h1>
<h3 style="opacity: 0.66;">Division of WhiteBear Family Inc.</h3>
<h2>
<a href="https://wbtek.net" target="_blank" style="opacity: 0.66;">Home</a>
<span style="color: #bbb; opacity: 0.66;">|</span>
<a href="https://github.com/wbtek" target="_blank" style="opacity: 0.66;">Github</a>
<span style="color: #bbb; opacity: 0.66;">|</span>
<a href="https://wbtek.net/pay" target="_blank" style="opacity: 0.88;">TipJar</a>
</h2>
<h1 style="font-size:1.8em; opacity: 0.66;">Projects</h1>
<h2>
<span class="label">BevyCube (3D Rust to WASM)</span>
<div style="font-size: 0.2em;">
<br>
</div>
<a href="https://github.com/wbtek/bevycube" target="_blank" style="opacity: 0.66;">GitHub</a>
<span style="color: #bbb; opacity: 0.66;">|</span>
<a href="./bevycube/doc/bevycube" target="_blank" style="opacity: 0.66;">Documentation</a>
<span style="color: #bbb; opacity: 0.66;">|</span>
<a href="./bevycube" target="_blank" style="opacity: 0.66;">Run</a>
</h2>
<div style="margin-top: 0px; margin-bottom: 30px;">
<a href="./bevycube" target="_blank" style="all: unset; cursor: pointer; order: none; padding: 0;">
<img src="bc_working_http_links.jpg" alt="BevyCube"
style="max-width: 333px; border: 2px solid #346ca8; border-radius: 8px;">
</a>
</div>
<h2>
<span class="label">Crypto Screener (Rust to WASM)</span>
<div style="font-size: 0.2em;">
<br>
</div>
<a href="https://github.com/wbtek/crypto_screener" target="_blank" style="opacity: 0.66;">GitHub</a>
<span style="color: #bbb; opacity: 0.66;">|</span>
<a href="https://wbtek.github.io/crypto_screener/docs/crypto_screener"
target="_blank" style="opacity: 0.66;">Documentation</a>
<span style="color: #bbb; opacity: 0.66;">|</span>
<a href="https://wbtek.github.io/cs" target="_blank" style="opacity: 0.66;">Run</a>
</h2>
<h2>
<span class="label">Gentoo Update script</span>
<div style="font-size: 0.2em;">
<br>
</div>
<a href="https://github.com/wbtek/gentoo_update" target="_blank" style="opacity: 0.66;">GitHub</a>
</h2>
</body>
</html>