-
Notifications
You must be signed in to change notification settings - Fork 2
/
resume_style.css
88 lines (87 loc) · 1.74 KB
/
resume_style.css
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
header {
font-family: 'Lilita One';
font-size: 40px;
color: aliceblue;
text-decoration: blue wavy underline;
text-align: center;
}
h1 {
font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
color: #9193ff;
font-size: 100px;
margin-bottom: -2vh;
}
h1:hover{
text-decoration:underline;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
a {
color:aliceblue;
text-decoration: none;
}
a:hover {
color:#9193ff;
font-style: italic;
text-decoration: blue wavy underline;
}
body {
background: linear-gradient(-45deg, aliceblue, #ffeec6, #96ddea, #91ffd6);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
height: 100vh;
font-family: 'Karla';
font-size: larger;
margin-left: 20%;
margin-right: 20%;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* .back {
font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
text-align: left;
font-size: 50px;
margin-top: -6vh;
margin-left: -32%;
} */
#cursorCircle {
width: 20px;
height: 20px;
background-color:#9193ff;
opacity: 50%;
border-radius: 50%;
position: fixed;
pointer-events: none;
transform: translate(-50%, -50%);
transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
z-index: 9999;
display: none;
}
.nav {
font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
text-align: left;
font-size: 50px;
margin: 8px;
}
a {
color:aliceblue;
text-decoration: none;
}
a:hover {
color:#9193ff;
font-style: italic;
text-decoration: blue wavy underline;
}