-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
99 lines (92 loc) · 2.19 KB
/
cv.html
File metadata and controls
99 lines (92 loc) · 2.19 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
<style>
body {
background: linear-gradient(to top right, #2cabe1, #254290, #231f20);
font-family: Courier New, monospace;
}
.content {
margin: 3em auto;
max-width: 500px;
}
.notebook-page {
padding: 90px 40px 40px 85px;
background-color: #fff;
background-image: linear-gradient(rgba(33, 150, 243, 0.27) 0.05em, transparent 0.05em);
background-size: 100% 2em;
position: relative;
min-height: 500px;
box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
}
.notebook-page:after {
content: "";
position: absolute;
left: 10%;
top: 0;
width: 1px;
height: 100%;
background: #ef5350;
}
.notebook-page .text-edit {
display: none;
}
textarea#msg {
background: none;
border: none;
color: #111;
font-size: 24px;
min-height: 450px;
resize: none;
line-height: 1.25;
}
aside.context {
color: #fff;
text-align: center;
}
aside.context a {
color: #fff;
text-decoration: none;
color: #111;
padding: 5px 0;
border-bottom: 1px dashed;
}
aside.context a:visited {
color: #fff;
}
aside.context .explanation {
max-width: 700px;
margin: 3em auto;
}
footer {
text-align: center;
margin: 5em auto;
}
footer a {
text-decoration: none;
display: inline-block;
width: 45px;
height: 45px;
border-radius: 50%;
background: transparent;
border: 1px dashed #fff;
color: #fff;
margin: 5px;
}
footer a:hover {
background: rgba(0, 0, 0, 0.1);
}
footer a .icons {
margin-top: 12px;
display: inline-block;
font-size: 20px;
}
</style>
<div class="content">
<div class="notebook-page">
<textarea id="msg"></textarea>
<div class="text-edit"></div>
</div>
<aside class="context">
<div class="explanation">
Inspired by the musical<a href="https://dearevanhansen.com/" target="_blank">'Dear Evan Hansen'</a></div>
</aside>
<footer><a href="https://www.linkedin.com/in/oliviale/" target="_blank"><i class="icon-social-linkedin icons"></i></a><a href="https://twitter.com/meowlivia_" target="_blank"><i class="icon-social-twitter icons"></i></a><a href="https://github.com/oliviale" target="_blank"><i class="icon-social-github icons"></i></a><a href="https://dribbble.com/oliviale" target="_blank"><i class="icon-social-dribbble icons"></i></a></footer>
</div>