This repository was archived by the owner on Dec 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout-site.html
More file actions
150 lines (148 loc) · 5.06 KB
/
Copy pathabout-site.html
File metadata and controls
150 lines (148 loc) · 5.06 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<title>About Site</title>
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="code.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet" />
<style>
.main {
padding: 25px;
text-align: center; /* centering the text */
background: linear-gradient(lightcyan, white 65%); /* the good ol' gradient */
font-family: 'Roboto', sans-serif;
}
.main h1 {
display: inline-block; /* auto width while being a block element */
margin: auto;
padding: 5px;
text-align: center;
/* underline styles */
border-bottom: 4px solid #7ca7eb;
transition-duration: 0.25s;
font-weight: normal;
}
.main h1:hover {
padding: 5px 50px;
background-color: rgb(190, 224, 222);
border-bottom-color: blue;
font-weight: bold;
/* the background's shape for the heading */
/* using rounded borders */
border-top-left-radius: 30px;
border-top-right-radius: 30px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.main ul {
/* the requirements list */
text-align: left;
margin-left: 10%;
list-style-type: square;
}
.main code {
background-color: lightcyan;
border: none;
border-radius: 2px;
padding: 0px 4px;
font-size: 1em;
}
.main code > span {
/* the keyword's style */
color: blue;
}
.main a {
text-decoration: none;
border: none;
}
.main a:hover {
text-decoration: underline;
}
.logo-container {
/* the table */
vertical-align: middle;
width: 100%;
}
.logo-container img {
/* the logos */
width: auto;
height: 4.5em;
display: inline-block;
vertical-align: middle; /* to align with the text */
padding: 16px;
transition-duration: 200ms;
border-color: transparent;
}
.logo-container img:hover {
height: 5em;
border: 5px solid;
border-color: lightgray;
}
.logo-container td > span {
/* the usage descriptions... */
display: block;
width: 100%;
text-align: left;
}
</style>
</head>
<body>
<ul id="navbar"></ul>
<div class="main">
<br />
<h1> - About The Website - </h1>
<br />
<br />
<p>
All code in this site (HTML, CSS, JS) is written by hand.
In order to give you a better experience at this site,
please use a browser that supports the following features:
</p>
<ul>
<!-- the minimum requirements for this webpage to work properly -->
<li>
JavaScript/ECMAScript 2015 [ES2015 (ES6)] <br />
- <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals">
Template Literals</a> and keywords such as <code><span>let</span></code> and <code><span>const</span></code> are used in this site.
</li>
<li>
CSS3+ (<a href="https://developer.mozilla.org/en-US/docs/Web/CSS">Latest Specifications Here</a>)
</li>
</ul>
<br />
<!-- the logos table -->
<table class="logo-container">
<tbody>
<tr>
<td>
<!-- The new property "srcset" is used as some browsers may not support SVG embedding for some reason -->
<a href="https://blender.org"><img title="Background Powered By Blender" srcset="res/blender_logo_socket.svg" alt="Blender Logo" /></a>
</td>
<td>
<span>Is Used to Make the Home Page's Background</span>
</td>
</tr>
<tr>
<td>
<a href="https://www.getpaint.net/"><img title="Paint.NET" src="https://www.getpaint.net/images/Logo4.png" /></a>
</td>
<td>
<span>Is Used to Make GASM's Logo</span>
</td>
</tr>
<tr>
<td>
<a href="https://code.visualstudio.com"><img title="Visual Studio Code" src="https://media.githubusercontent.com/media/microsoft/vscode-docs/master/images/logo-stable.png" /></a>
</td>
<td>
<span>Is Used to Write All the Code</span>
</td>
</tr>
</tbody>
</table>
<br />
</div>
<footer id="footer"></footer>
<script src="template.js" defer></script>
</body>
</html>