-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (100 loc) · 3.81 KB
/
index.html
File metadata and controls
105 lines (100 loc) · 3.81 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
<!DOCTYPE html>
<html>
<head>
<title>Alsami Technologies</title>
<script>
document.addEventListener("DOMContentLoaded", ()=>{
});
</script>
<style>
html, body{margin: 0; padding:0; height: 100%;}
body{
display: block;
color: white;
background-color: #333;
}
header{
background-color: black;
border-bottom: 1px solid orange;
}
#branding h1, #branding{
display: inline;
}
#options{
margin: 1rem;
display: inline;
float: right;
}
.card-container{
font-family: Tahoma, Verdana;
margin: 0.5rem;
padding: 0.5rem;
height: 9rem;
width: auto;
border-radius: 1rem;
}
#backgroundt{
user-select: none;
z-index: -1;
position: absolute;
bottom: 8%;
/*font-size: 6vw;*/font-size: 4svw;
text-align: center;
width: 100%;
color: #BBB3;
text-shadow: -1px 1px 0.2rem black, 3px -2px 0.1rem #444;
}
.uns{user-select: none;margin: 0;}
.np{margin: 0; padding: 0;}
.jmpList li{
transition: all 0.2s ease-in-out;
border-radius: 0.2rem;
border: 1px solid #0000;
display: block;
user-select: none;
}
.jmpList li:hover{
background-image: linear-gradient(#FFF3 0%, #0006 50%, #FFF2 100%);
font-size: 1.4rem;
border-color: gray;
color: #0F0;
font-style: italic;
font-family: 'Consolas','Courier New', Courier, monospace;
}
</style>
</head>
<body>
<header>
<div id="branding">
<h1><i>@lsami</i><sub style="font-size: 1rem;font-family: Trajan, Georgia;">computing<sub></h1>
</div>
<div id="options">
Home Research Contact Resources FTP WebTools
</div>
</header>
<div class="card-container" style="border: 1px solid orange;">
<div class="card">
<p style="text-align: center; margin: 0;font-size: 1.7rem;">Our Mission? to abstract away computing <span style="font-family: monospace">such that</span> professionals can focus on their field</p>
<h3 style="margin: 0; padding: 0;">Welcome to Alsami Technologies!</h3>
</div>
</div>
<div class="card-container" style="background-image: radial-gradient(circle at 0% 100%, #383 2%, #030 6%, #383 11%, #030 15%, #030 20%, #151 70%);">
<h3 class="uns" style="font-family: 'Courier New', 'Courier', 'Consolas', 'JetBrains Mono', monospace;">Computer Science and Working Groups</h3>
</div>
<div class="card-container" style="background-image: /*repeating-linear-gradient(green 0%, blue 3%)*/repeating-linear-gradient(#0003 0%, #0003 10%,#0005 10%, #0005 20%),repeating-linear-gradient(90deg, #0003 0%, #0003 3%,#FFF1 3%, #FFF1 6%),repeating-radial-gradient(circle, #622 0%, #622 2%, #511 8%);">
<h3 class="uns" style="font-family: Georgia, serif;">@<i>lsami</i> Scientific Suite</h3>
<p class="np">a computer is only a means to an end...</p>
<ul class="jmpList">
<li>Scientific webUtils</li>
<li>Gene Explorer</li>
<li>dsBase and dataExplorer</li>
</ul>
</div>
<div class="card-container" style="background-image: repeating-linear-gradient(green 0%, blue 3%);">
<h3 class="uns">For Industry</h3>
</div>
<div id="backgroundt">
τὸ δὲ Ἄργος τοῦτον τὸν χρόνον προεῖχε ἅπασι τῶν ἐν τῇ νῦν Ἑλλάδι καλεομένῃ χωρῇ. ἀπικομένους δὲ τούς Φοίνικας ἐς δὴ τὸ Ἄργος τοῦτο διατίθεσθαι τὸν φόρτον
</div>
</body>
</html>