-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
144 lines (119 loc) · 6.1 KB
/
cv.html
File metadata and controls
144 lines (119 loc) · 6.1 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
<html>
<head>
<title>Tucker Beck Resumé</title>
<meta charset="UTF-8"></meta>
<link id="main-css" rel="stylesheet" type="text/css" href="static/css/main.css"></link>
<link id="switcher-css" rel="stylesheet" type="text/css" href="static/css/switchers.css"></link>
</head>
<body>
<div id="container">
</div>
<div id="switchers" class="no-print">
<div id="switcher-menus">
<div id="main-menu">
<button class="switcher-menu">⚙</button>
</div>
<div id="sub-menu">
<button id="render-menu" class="switcher-menu">💾</button>
<button id="role-menu" class="switcher-menu">🖥</button>
<button id="size-menu" class="switcher-menu">🔍</button>
<button id="color-menu" class="switcher-menu">🖌</button>
<button id="format-menu" class="switcher-menu">💫</button>
</div>
</div>
<div id="switcher-list">
<div id="render-buttons" class="switcher-buttons">
<button class="switcher-button render-button" format="download">
<div class="button-internals">
<span class="switcher-button-emoji" id="render-download-switcher-button-emoji">🖨</span>
<span class="switcher-button-text" id="render-download-switcher-button-text">Print/Download</span>
</div>
</button>
</div>
<div id="role-buttons" class="switcher-buttons">
<button class="switcher-button role-button" role="manager">
<div class="button-internals">
<span class="switcher-button-emoji" id="role-manager-switcher-button-emoji">👔</span>
<span class="switcher-button-text" id="role-manager-switcher-button-text">Software Engineering Manager</span>
</div>
</button>
<button class="switcher-button role-button" role="staff">
<div class="button-internals">
<span class="switcher-button-emoji" id="role-staff-switcher-button-emoji">⚕</span>
<span class="switcher-button-text" id="role-staff-switcher-button-text">Staff Software Engineer</span>
</div>
</button>
<button class="switcher-button role-button" role="senior">
<div class="button-internals">
<span class="switcher-button-emoji" id="role-senior-switcher-button-emoji">🕶</span>
<span class="switcher-button-text" id="role-senior-switcher-button-text">Senior Software Engineer</span>
</div>
</button>
</div>
<div id="size-buttons" class="switcher-buttons">
<button class="switcher-button size-button" size="small">
<div class="button-internals">
<span class="switcher-button-emoji" id="size-small-switcher-button-emoji">👓</span>
<span class="switcher-button-text" id="size-small-switcher-button-text">Small</span>
</div>
</button>
<button class="switcher-button size-button" size="medium">
<div class="button-internals">
<span class="switcher-button-emoji" id="size-medium-switcher-button-emoji">👌</span>
<span class="switcher-button-text" id="size-medium-switcher-button-text">Medium</span>
</div>
</button>
<button class="switcher-button size-button" size="large">
<div class="button-internals">
<span class="switcher-button-emoji" id="size-large-switcher-button-emoji">👁</span>
<span class="switcher-button-text" id="size-large-switcher-button-text">Large</span>
</div>
</button>
</div>
<div id="color-buttons" class="switcher-buttons">
<button class="switcher-button color-button" color="light">
<div class="button-internals">
<span class="switcher-button-emoji" id="color-light-switcher-button-emoji">🔅</span>
<span class="switcher-button-text" id="color-light-switcher-button-text">Light</span>
</div>
</button>
<button class="switcher-button color-button" color="night">
<div class="button-internals">
<span class="switcher-button-emoji" id="color-night-switcher-button-emoji">🌖</span>
<span class="switcher-button-text" id="color-night-switcher-button-text">Night</span>
</div>
</button>
<button class="switcher-button color-button" color="blue">
<div class="button-internals">
<span class="switcher-button-emoji" id="color-blue-switcher-button-emoji">🫐</span>
<span class="switcher-button-text" id="color-blue-switcher-button-text">Blue</span>
</div>
</button>
<button class="switcher-button color-button" color="bold">
<div class="button-internals">
<span class="switcher-button-emoji" id="color-bold-switcher-button-emoji">📢</span>
<span class="switcher-button-text" id="color-bold-switcher-button-text">Bold</span>
</div>
</button>
</div>
<div id="format-buttons" class="switcher-buttons">
<button class="switcher-button format-button" format="fancy">
<div class="button-internals">
<span class="switcher-button-emoji" id="format-fancy-switcher-button-emoji">✨</span>
<span class="switcher-button-text" id="format-fancy-switcher-button-text">Fancy</span>
</div>
</button>
<button class="switcher-button format-button" format="plain">
<div class="button-internals">
<span class="switcher-button-emoji" id="format-plain-switcher-button-emoji">💼</span>
<span class="switcher-button-text" id="format-plain-switcher-button-text">Plain</span>
</div>
</button>
</div>
</div>
</div>
<script src="static/js/main.js" type="module"></script>
<script src="static/js/switchers.js" type="module"></script>
<!--<script src="http://localhost:5500/livereload.js?LR-verbose=true"></script>-->
</body>
</html>