forked from gabrielsroka/gabrielsroka.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (107 loc) · 2.27 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="initial-scale=1.0, minimum-scale=0.25">
<meta name="google-site-verification" content="llJkMddN4cdVHVOHWmomAx7oSBqj6wU00IUhE4tIUVo" />
<title>Gabriel Sroka</title>
<link href="main.css" rel="stylesheet">
<style>
/* Pseudocode:
.container {
display: (width > 800px) ? flex : block;
}
*/
a {
text-decoration: none;
}
#burger {
display: none;
}
#menu {
padding: 0 10px 10px;
margin: 0;
text-align: center;
}
nav li {
display: inline;
list-style-type: none;
}
.container {
display: flex;
}
.box {
border: 1px solid;
padding: 6px;
margin: 10px;
text-align: center;
}
.button {
padding: 6px;
margin: 12px;
background-color: black;
color: white;
display: block;
font-weight: bold;
}
.button:hover {
background-color: #444;
}
footer {
background-color: black;
color: white;
padding: .5em 1em;
margin-top: 1.2em;
text-align: right;
font-size: .8em;
}
/* less than or equal to 800px */
@media (max-width: 800px) {
#burger {
display: block;
float: right;
padding: .1em .5em;
font-size: 2.6em;
}
#menu.hide-mobile {
display: none;
}
nav a {
display: block;
}
.container {
display: block;
margin: auto;
width: 240px;
}
}
</style>
</head>
<body>
<nav>
<h1>Gabriel Sroka</h1>
<span id=burger>≡</span>
<ul id=menu class=hide-mobile>
<li><a href="/webpages/bookmarklets.htm">Editor</a>
<li><a href="/hn.html">Hacker News</a>
<li><a href="/webpages/">Webpages</a>
</ul>
</nav>
<main>
<h2>Tools</h2>
<div class=container>
<div class=box>Export Okta Users, Groups, etc. to CSV. Show SAML assertion.
<a href="/rockstar/" class=button>rockstar</a></div>
<div class=box>Okta PowerShell Module (unofficial). Call Okta API from PowerShell.
<a href="https://github.com/gabrielsroka/OktaAPI.psm1" class=button>Okta API</a></div>
<div class=box>My website, including rockstar: Export Okta Users, Groups, etc. to CSV.
<a href="https://github.com/gabrielsroka/gabrielsroka.github.io" class=button>GitHub</a></div>
</div>
</main>
<footer>
Copyright © 2020-2022
</footer>
<script>
burger.onclick = () => menu.classList.toggle('hide-mobile');
</script>
</body>
</html>